Characters.cs 700 B

12345678910111213141516171819202122232425262728
  1. namespace FF8
  2. {
  3. public enum Characters
  4. {
  5. // I noticed some values were in order of these characters so I made those values into arrays
  6. // and put the character names into an enum.
  7. Squall_Leonhart = 0,
  8. Zell_Dincht,
  9. Irvine_Kinneas,
  10. Quistis_Trepe,
  11. Rinoa_Heartilly,
  12. Selphie_Tilmitt,
  13. Seifer_Almasy,
  14. Edea_Kramer,
  15. Laguna_Loire,// = Squall_Leonhart, //Laguna always replaces squall
  16. Kiros_Seagill, //unsure who kiros and ward replace. I think it's whom ever is with squall.
  17. Ward_Zabac,
  18. Blank = 0xFF
  19. }
  20. }