Scriptum/Assets/Scripts/REFACTORING/Application/Panel/Chest/ChestDataListManager.cs
2022-11-07 23:06:06 +01:00

24 lines
648 B
C#

using UnityEngine;
public class ChestDataListManager : SceneDataListManager<ChestPrefarbAsset>
{
public ChestDataListManager(string gameObjectLocalization, string assetLocalization) : base(gameObjectLocalization, assetLocalization)
{
}
public override void AddElementToList(ChestPrefarbAsset newElement)
{
throw new System.NotImplementedException();
}
public override void RemoveElementFromList(ChestPrefarbAsset element)
{
throw new System.NotImplementedException();
}
protected override void doBuild(GameObject _object)
{
throw new System.NotImplementedException();
}
}