diff options
Diffstat (limited to 'GameCode/CanSeeInfo.cs')
-rw-r--r-- | GameCode/CanSeeInfo.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/GameCode/CanSeeInfo.cs b/GameCode/CanSeeInfo.cs new file mode 100644 index 0000000..947131d --- /dev/null +++ b/GameCode/CanSeeInfo.cs @@ -0,0 +1,10 @@ +using UnityEngine; + +public class CanSeeInfo +{ + public bool canSee; + + public Vector2 hitPoint; + + public float distance; +} |