diff options
author | chai <chaifix@163.com> | 2021-08-02 19:24:52 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-08-02 19:24:52 +0800 |
commit | 31666a451a74183b74557208812a9b47053c3f08 (patch) | |
tree | 6f03262d5136cc117c06b49ece4ec8741dc4054a /Assets/Scripts/GUI/UIPanelBase.cs | |
parent | 4c362271f502b9999cd77e991271f16993d5c665 (diff) |
*misc
Diffstat (limited to 'Assets/Scripts/GUI/UIPanelBase.cs')
-rw-r--r-- | Assets/Scripts/GUI/UIPanelBase.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Assets/Scripts/GUI/UIPanelBase.cs b/Assets/Scripts/GUI/UIPanelBase.cs new file mode 100644 index 00000000..e31f1a3b --- /dev/null +++ b/Assets/Scripts/GUI/UIPanelBase.cs @@ -0,0 +1,18 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class UIPanelBase : MonoBehaviour
+{
+ // Start is called before the first frame update
+ void Start()
+ {
+
+ }
+
+ // Update is called once per frame
+ void Update()
+ {
+
+ }
+}
|