Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
656 B

  1. /******** materials ********************************/
  2. // 24 tea materials (from teapots app)
  3. #define NUM_TEA_MATERIALS 24
  4. enum {
  5. EMERALD = 0,
  6. JADE,
  7. OBSIDIAN,
  8. PEARL,
  9. RUBY,
  10. TURQUOISE,
  11. BRASS,
  12. BRONZE,
  13. CHROME,
  14. COPPER,
  15. GOLD,
  16. SILVER,
  17. BLACK_PLASTIC,
  18. CYAN_PLASTIC,
  19. GREEN_PLASTIC,
  20. RED_PLASTIC,
  21. WHITE_PLASTIC,
  22. YELLOW_PLASTIC,
  23. BLACK_RUBBER,
  24. CYAN_RUBBER,
  25. GREEN_RUBBER,
  26. RED_RUBBER,
  27. WHITE_RUBBER,
  28. YELLOW_RUBBER
  29. };
  30. // 'white' materials, for texturing
  31. #define NUM_TEX_MATERIALS 4
  32. enum {
  33. BRIGHT_WHITE = NUM_TEA_MATERIALS,
  34. WHITE,
  35. WARM_WHITE,
  36. COOL_WHITE
  37. };