예제 #1
0
파일: Ship.cs 프로젝트: aeshemi/battleships
 public Ship(int id, ShipType type)
 {
     Id   = id;
     Type = type;
     Size = type.Size();
 }