From 12f21516ffd7caacfec259d6771677769384ffe8 Mon Sep 17 00:00:00 2001 From: Mikkel Bybjerg Date: Sat, 27 Apr 2019 11:14:45 +0200 Subject: enemy collision and health --- nGJ2019/Assets/Scripts/EnemyCollider.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nGJ2019/Assets/Scripts/EnemyCollider.cs (limited to 'nGJ2019/Assets/Scripts/EnemyCollider.cs') diff --git a/nGJ2019/Assets/Scripts/EnemyCollider.cs b/nGJ2019/Assets/Scripts/EnemyCollider.cs new file mode 100644 index 0000000..89144d9 --- /dev/null +++ b/nGJ2019/Assets/Scripts/EnemyCollider.cs @@ -0,0 +1,8 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class EnemyCollider : MonoBehaviour +{ + public ObstacleType type; +} -- cgit v1.2.3