Christopher
8 years ago
3 changed files with 58 additions and 42 deletions
@ -0,0 +1,45 @@
|
||||
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>(); |
||||
} |
||||
} |
@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d19fe746c09ac44e2bf310e6a1350b8c |
||||
timeCreated: 1478698399 |
||||
licenseType: Free |
||||
MonoImporter: |
||||
serializedVersion: 2 |
||||
defaultReferences: [] |
||||
executionOrder: 0 |
||||
icon: {instanceID: 0} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Loading…
Reference in new issue