diff options
author | chai <chaifix@163.com> | 2021-08-30 21:11:54 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-08-30 21:11:54 +0800 |
commit | 86ec4522be1d0b932006801c7bf2297adc9f0028 (patch) | |
tree | 551739eaff15f0a1990f997409da8926979ba85a /Assets/Scripts/Projectile/Projectile.cs | |
parent | 07fd372981a16672af23e30816ade14fcb744804 (diff) |
*misc
Diffstat (limited to 'Assets/Scripts/Projectile/Projectile.cs')
-rw-r--r-- | Assets/Scripts/Projectile/Projectile.cs | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/Assets/Scripts/Projectile/Projectile.cs b/Assets/Scripts/Projectile/Projectile.cs index 867ffab1..70f2733c 100644 --- a/Assets/Scripts/Projectile/Projectile.cs +++ b/Assets/Scripts/Projectile/Projectile.cs @@ -4,15 +4,10 @@ using UnityEngine; public class Projectile : MonoBehaviour
{
- // Start is called before the first frame update
- void Start()
- {
-
- }
- // Update is called once per frame
- void Update()
- {
-
- }
-}
+
+ public UnitController owner;
+
+ public bool isActive;
+
+}
\ No newline at end of file |