Guest User

Untitled

a guest
Oct 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // The outside value is the character level, the inside value is the spell level.
  2.  
  3. List<List<string>> SpellsPerDay = new List<List<string>>();
  4. List<List<string>> SpellsKnown = new List<List<string>>();
  5.  
  6. public List<List<string>> CreateSpellList(bool NeedSpellList)
  7. {
  8. List<List<string>> _SpellList = new List<List<string>>();
  9. for (int i = 1; i < 21; i++)
  10. {
  11. _SpellList.Add(new List<string>);
  12. }
  13. return _SpellList;
  14.  
  15. }
Add Comment
Please, Sign In to add comment