Scriptum/Assets/Scripts/REFACTORING/Application/Shared/Manager/UI/ManagerInterface.cs
2022-11-06 20:46:25 +01:00

23 lines
455 B
C#

using System.Collections.Generic;
using UnityEngine;
public interface ManagerInterface<T>
{
//public void SetPanelController(ref PanelController<T> dynamicPanelController);
public bool OpenPanel();
public bool ClosePanel();
public void SetupPanel();
public List<T> GetList();
public void SetList(List<T> list);
public void Add(T model);
public void UpdateList();
public void Remove();
/* public T Find();
*/
}