From 6c91f1ed6810a57da08a24dd1359f288c443dd75 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Fri, 12 May 2023 19:00:29 +0800 Subject: *misc --- .../Assets/Scripts/Unit/Characters/PlayerController.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 WorldlineKeepers/Assets/Scripts/Unit/Characters/PlayerController.cs (limited to 'WorldlineKeepers/Assets/Scripts/Unit/Characters/PlayerController.cs') diff --git a/WorldlineKeepers/Assets/Scripts/Unit/Characters/PlayerController.cs b/WorldlineKeepers/Assets/Scripts/Unit/Characters/PlayerController.cs new file mode 100644 index 0000000..66bf6df --- /dev/null +++ b/WorldlineKeepers/Assets/Scripts/Unit/Characters/PlayerController.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace WK +{ + + public class PlayerController + { + private CharacterInfo m_CharacterInfo; + public CharacterInfo info { get { return m_CharacterInfo; } } + + private CharacterBehaviour m_CharacterBehaviour; + public CharacterBehaviour behaviour { get { return m_CharacterBehaviour; } } + + } + +} \ No newline at end of file -- cgit v1.1-26-g67d0