19 lines
343 B
C#
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();
|
||
|
}
|