Open-sourced some code

This commit is contained in:
2019-03-08 09:54:14 +11:00
commit 645272872c
142 changed files with 3028 additions and 0 deletions
@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Creatures {
public interface ICreature {
//flags used to control other monsters
int HorizontalMoveDirection { get; set; }
int VerticalMoveDirection { get; set; }
//used by the combad system
int DamageValue { get; set; }
int HealthValue { get; set; }
}
}