mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
27 lines
471 B
C#
27 lines
471 B
C#
|
// Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
||
|
// GameDataEditor.IGDEData
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace GameDataEditor
|
||
|
{
|
||
|
public abstract class IGDEData
|
||
|
{
|
||
|
protected string _key;
|
||
|
|
||
|
public string Key
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return _key;
|
||
|
}
|
||
|
private set
|
||
|
{
|
||
|
_key = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public abstract void LoadFromDict(string key, Dictionary<string, object> dict);
|
||
|
|
||
|
public abstract void LoadFromSavedData(string key);
|
||
|
}
|
||
|
}
|