System.Collections.Generic.List.Add(weaponSlots)

Here are the examples of the csharp api System.Collections.Generic.List.Add(weaponSlots) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : creature.cs
with MIT License
from kenshen112

public void createWeaponSlots()
    {
        slots = new List<weaponSlots>();
        for (int i = 0; i < 5; i++)
        {
            slots.Add(new weaponSlots((Appendage)i, job));
        }
    }