Scriptum/Assets/Scripts/REFACTORING/Application/Shared/Manager/UI/ManagerInterface.cs

19 lines
343 B
C#
Raw Normal View History

2022-10-22 18:04:21 +02:00
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();
}