예제 #1
0
파일: Vehicle.cs 프로젝트: ZivFoox/Garage
 private void addWheelsToVehicle(Wheel i_Wheel, byte i_NumofWheels)
 {
     for (byte i = 0; i < i_NumofWheels; i++)
     {
         Wheels.Add(i_Wheel.ShallowCopy());
     }
 }