package bwapi; /** * Size types are used by unit types in Broodwar to determine how much damage will be * applied. *
* This corresponds with {@link DamageType} for several different damage reduction * applications. * * @see DamageType * @see UnitType * @see UnitSizeType *
* [View on Starcraft Campendium (Official Website)](http://classic.battle.net/scc/gs/damage.shtml)
*/
public enum UnitSizeType {
Independent(0),
Small(1),
Medium(2),
Large(3),
None(4),
Unknown(5);
public final int id;
UnitSizeType(final int id) {
this.id = id;
}
}