Advertisement
BobTheHunted

layers.cfg

Mar 21st, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.69 KB | None | 0 0
  1. class Layers
  2. {
  3.     class BTHBC_MD_Layer_White
  4.     {
  5.         texture  = "";
  6.         material = "bthbc_map_data\data\debug\bthbc_md_white.rvmat";
  7.     };
  8.  
  9.     class BTHBC_MD_Layer_Red
  10.     {
  11.         texture  = "";
  12.         material = "bthbc_map_data\data\debug\bthbc_md_red.rvmat";
  13.     };
  14.  
  15.     class BTHBC_MD_Layer_Green
  16.     {
  17.         texture  = "";
  18.         material = "bthbc_map_data\data\debug\bthbc_md_green.rvmat";
  19.     };
  20.  
  21.     class BTHBC_MD_Layer_Blue
  22.     {
  23.         texture  = "";
  24.         material = "bthbc_map_data\data\debug\bthbc_md_blue.rvmat";
  25.     };
  26.  
  27.     class BTHBC_MD_Layer_Yellow
  28.     {
  29.         texture  = "";
  30.         material = "bthbc_map_data\data\debug\bthbc_md_yellow.rvmat";
  31.     };
  32.  
  33.     class BTHBC_MD_Layer_Magenta
  34.     {
  35.         texture  = "";
  36.         material = "bthbc_map_data\data\debug\bthbc_md_magenta.rvmat";
  37.     };
  38.  
  39.     class BTHBC_MD_Layer_White
  40.     {
  41.         texture  = "";
  42.         material = "bthbc_map_data\data\debug\bthbc_md_white.rvmat";
  43.     };
  44.  
  45.     class BTHBC_MD_Layer_Teal
  46.     {
  47.         texture  = "";
  48.         material = "bthbc_map_data\data\debug\bthbc_md_teal.rvmat";
  49.     };
  50.  
  51.     class BTHBC_MD_Layer_Grey
  52.     {
  53.         texture  = "";
  54.         material = "bthbc_map_data\data\debug\bthbc_md_grey.rvmat";
  55.     };
  56.  
  57.     class BTHBC_MD_Layer_Black
  58.     {
  59.         texture  = "";
  60.         material = "bthbc_map_data\data\debug\bthbc_md_black.rvmat";
  61.     };
  62. };
  63.  
  64. class Legend
  65. {
  66.     picture = "BTHBC_Minima\source\maplegend.png";
  67.     class Colors
  68.     {
  69.         BTHBC_MD_Layer_White[]   = {{255,255,255}};
  70.         BTHBC_MD_Layer_Red[]     = {{255,0,0}};
  71.         BTHBC_MD_Layer_Green[]   = {{0,255,0}};
  72.         BTHBC_MD_Layer_Blue[]    = {{0,0,255}};
  73.         BTHBC_MD_Layer_Yellow[]  = {{255,255,0}};
  74.         BTHBC_MD_Layer_Magenta[] = {{255,0,255}};
  75.         BTHBC_MD_Layer_Teal[]    = {{0,255,255}};
  76.         BTHBC_MD_Layer_Grey[]    = {{128,128,128}};
  77.         BTHBC_MD_Layer_Black[]   = {{0,0,0}};
  78.     };
  79. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement