01: package vicazh.hyperpool; 02: 03: /** 04: * The interface for all units 05: * 06: * @author Victor Zhigunov 07: * @version 0.4.0 08: */ 09: public interface Unit { 10: 11: /** 12: * Get ID 13: */ 14: public int getID(); 15: }