Faces.cs 742 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace OpenVIII.Card
  3. {
  4. public class Faces : SP2
  5. {
  6. protected override void DefaultValues()
  7. {
  8. base.DefaultValues();
  9. Props = new List<TexProps>()
  10. {
  11. new TexProps{
  12. Filename = EXE_Offsets.FileName[Memory.Year],
  13. Count = 14,
  14. Big = new List<BigTexProps>{
  15. new BigTexProps{
  16. Filename = "cards_{0:0}.png" } },
  17. Offset = EXE_Offsets.TIM[Memory.Year][2],
  18. },
  19. };
  20. TextureStartOffset = 0;
  21. EntriesPerTexture = 8;
  22. IndexFilename = "";
  23. }
  24. }
  25. }