diff options
author | chai <chaifix@163.com> | 2022-01-29 11:50:04 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-01-29 11:50:04 +0800 |
commit | a5e5d7063a98de0554f7d021a3db33a9909fe306 (patch) | |
tree | 16a72495c289cf3fede414d5c661c9aa7e8ec85f /JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs | |
parent | 60c2e26bc432273d41365165c5457db7e51aa03d (diff) |
*misc
Diffstat (limited to 'JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs')
-rw-r--r-- | JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs b/JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs new file mode 100644 index 0000000..a42c249 --- /dev/null +++ b/JamHelper/Assets/JamTools/FirstPersonController/Scripts/PlayerShot.cs @@ -0,0 +1,18 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class PlayerShot : MonoBehaviour
+{
+ // Start is called before the first frame update
+ void Start()
+ {
+
+ }
+
+ // Update is called once per frame
+ void Update()
+ {
+
+ }
+}
|