Exemplo n.º 1
0
 public MSTower(String model, String texture, String effect, Vector3 position, float rotation, int row, int column, int height, MSTowerStats stats)
     : base(model, texture, effect, position, rotation, row, column, height)
 {
     this.Stats = stats;
     if( stats != null ) capacity = stats.GetVolunteerCost();
     this.targetList = new List<MSUnit>();
     System.Console.WriteLine(capacity);
 }