You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
807 B
45 lines
807 B
8 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
|
[System.Serializable]
|
||
|
public class StringVar
|
||
|
{
|
||
|
public string key;
|
||
|
public string value;
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class IntVar
|
||
|
{
|
||
|
public string key;
|
||
|
public int value;
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class FloatVar
|
||
|
{
|
||
|
public string key;
|
||
|
public float value;
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class BoolVar
|
||
|
{
|
||
|
public string key;
|
||
|
public bool value;
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class SavePointData
|
||
|
{
|
||
|
public string sceneName;
|
||
|
public string flowchartName;
|
||
|
public string blockName;
|
||
|
|
||
|
public List<StringVar> stringVars = new List<StringVar>();
|
||
|
public List<IntVar> intVars = new List<IntVar>();
|
||
|
public List<FloatVar> floatVars = new List<FloatVar>();
|
||
|
public List<BoolVar> boolVars = new List<BoolVar>();
|
||
|
}
|
||
|
}
|