class BulidingUnit(Unit): def init(self , name , hp , location):
self.name = name # 멤버변수 self.hp = hp # 멤버변수 self.location = location # 멤버변수 pass # pass 가 존재하는경우 미완성 상태라도 일단 넘어감.
supply_depot = BulidingUnit( "건물", 500 , "7시")