namespace creachopedia { class GroundCreacher:Creacher { public GroundCreacher(string name, int footsyCount):base(name, footsyCount){ } } class AirCreacher:Creacher { public AirCreacher(string name, int footsyCount):base(name, footsyCount){ } } class WaterCreacher:Creacher{ public WaterCreacher(string name, int footsyCount):base(name, footsyCount){ } } class UndergroundCreacher:Creacher { public UndergroundCreacher(string name, int footsyCount):base(name, footsyCount){ } } }