namespace TowerDefense.Towers.Placement { /// /// Enum representing the state of how a tower fits into a placement area /// public enum TowerFitStatus { /// /// Tower fits in this location /// Fits, /// /// Tower overlaps another tower in the placement area /// Overlaps, /// /// Tower exceeds bounds of the placement area /// OutOfBounds } }