Cards.cs 830 B

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