Scriptum/Assets/Scripts/REFACTORING/Application/Shared/Manager/UI/ManagerInterface.cs
2022-11-24 03:03:30 +01:00

19 lines
343 B
C#

using System.Collections.Generic;
using UnityEngine;
public interface ManagerInterface<T>
{
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();
}