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

/******** materials ********************************/
// 24 tea materials (from teapots app)
#define NUM_TEA_MATERIALS 24
enum {
EMERALD = 0,
JADE,
OBSIDIAN,
PEARL,
RUBY,
TURQUOISE,
BRASS,
BRONZE,
CHROME,
COPPER,
GOLD,
SILVER,
BLACK_PLASTIC,
CYAN_PLASTIC,
GREEN_PLASTIC,
RED_PLASTIC,
WHITE_PLASTIC,
YELLOW_PLASTIC,
BLACK_RUBBER,
CYAN_RUBBER,
GREEN_RUBBER,
RED_RUBBER,
WHITE_RUBBER,
YELLOW_RUBBER
};
// 'white' materials, for texturing
#define NUM_TEX_MATERIALS 4
enum {
BRIGHT_WHITE = NUM_TEA_MATERIALS,
WHITE,
WARM_WHITE,
COOL_WHITE
};