diff options
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Managers/Main.cs')
-rw-r--r-- | WorldlineKeepers/Assets/Scripts/Managers/Main.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Managers/Main.cs b/WorldlineKeepers/Assets/Scripts/Managers/Main.cs new file mode 100644 index 0000000..976779d --- /dev/null +++ b/WorldlineKeepers/Assets/Scripts/Managers/Main.cs @@ -0,0 +1,36 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using WK.Data; + +namespace WK +{ + + public class Main : SingletonMB<Main> + { + protected override void Awake() + { + base.Awake(); + DontDestroyOnLoad(this.gameObject); + } + + private void Start() + { + DataManager.Instance.Load(); + + Debug.Log(DataManager.Instance.GetCharacterStats("health")); + } + + private void Update() + { + + } + + private void FixedUpdate() + { + + } + + } + +} |