Cards.cs 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections.Generic;
  2. namespace FF8
  3. {
  4. public partial class Cards : SP2
  5. {
  6. #region Constructors
  7. /// <summary>
  8. /// Card images used in menus. The images used in the triple triad game are in the ff8.exe in
  9. /// tim files.
  10. /// </summary>
  11. /// <seealso cref="http://forums.qhimm.com/index.php?topic=11084.0"/>
  12. public Cards()
  13. {
  14. Props = new List<TexProps>()
  15. {
  16. new TexProps("mc{0:00}.tex",10),
  17. };
  18. TextureStartOffset = 0;
  19. EntriesPerTexture = 11;
  20. IndexFilename = "cardanm.sp2";
  21. Init();
  22. Entries[(uint)ID.Card_Back] = new Entry
  23. {
  24. X = 192,
  25. Y = 128,
  26. Width = 64,
  27. Height = 64
  28. };
  29. }
  30. #endregion Constructors
  31. }
  32. }