summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Projectile
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Projectile')
-rw-r--r--Assets/Scripts/Projectile/Projectile.cs17
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