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
19
View Source File : creature.cs
License : MIT License
Project Creator : kenshen112
License : MIT License
Project Creator : kenshen112
public void createWeaponSlots()
{
slots = new List<weaponSlots>();
for (int i = 0; i < 5; i++)
{
slots.Add(new weaponSlots((Appendage)i, job));
}
}