using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class Actor : Hurtable {

	public enum TargetType {Infantry, InfantryGroup, Unarmored, Armored, Air, AirFastMover};
	public enum Stance { Stand, Crouch, Prone }
}
