SafeAndFree.Data.TowerStats.TowerStats C# (CSharp) Method

TowerStats() public method

public TowerStats ( int delay, int range, int costToNext ) : System
delay int
range int
costToNext int
return System
        public TowerStats(int delay, int range, int costToNext)
            : this()
        {
            Delay = delay;
            Range = range;
            CostToNext = costToNext;
        }
TowerStats