Skip to content

Commit 69140c5

Browse files
authored
Wardrobe - Add donated CFP configs (#11199)
* init * Donate macros * rm comment * init * apply ACEWARDROBE() * -> displayName #11226 * Revert "-> displayName" This reverts commit 08e994b.
1 parent 61a82b8 commit 69140c5

File tree

6 files changed

+645
-0
lines changed

6 files changed

+645
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class ace_wardrobe {
2+
class ACEWARDROBE(base);
3+
class ACEWARDROBE(base_H_goggles_on);
4+
class ACEWARDROBE(base_H_goggles_off);
5+
class ACEWARDROBE(base_U_sleeves_up);
6+
class ACEWARDROBE(base_U_sleeves_down);
7+
class ACEWARDROBE(base_U_gloves_on);
8+
9+
#include "ace_wardrobe_headgear.hpp"
10+
#include "ace_wardrobe_uniforms.hpp"
11+
#include "ace_wardrobe_goggles.hpp"
12+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
class CFP_UA_Thermals_Blk: ACEWARDROBE(base) {
2+
class modifiableTo {
3+
class CFP_UA_Thermals_Blk_GPS {};
4+
};
5+
};
6+
class CFP_UA_Thermals_Blk_GPS: ACEWARDROBE(base) {
7+
class modifiableTo {
8+
class CFP_UA_Thermals_Blk {};
9+
};
10+
components[] = {QUOTE(CFP_Foretex)};
11+
};
12+
13+
#define NECKWRAP_GLASSES(NeckwrapBase,NeckwrapGlasses,Glasses)\
14+
class NeckwrapBase: ACEWARDROBE(base) {\
15+
class modifiableTo {\
16+
class NeckwrapGlasses {};\
17+
};\
18+
};\
19+
class NeckwrapGlasses: ACEWARDROBE(base) {\
20+
class modifiableTo {\
21+
class NeckwrapBase {};\
22+
};\
23+
components[] = {QUOTE(Glasses)};\
24+
}
25+
26+
NECKWRAP_GLASSES(CFP_Neck_Plain_Atacs,CFP_Neck_Wrap_Atacs,CUP_G_Oakleys_Clr);
27+
NECKWRAP_GLASSES(CFP_Neck_Plain_Atacs2,CFP_Neck_Wrap_Atacs2,CUP_G_Oakleys_Clr);
28+
NECKWRAP_GLASSES(CFP_Neck_Plain2,CFP_Neck_Wrap2,CUP_G_Oakleys_Clr);
29+
NECKWRAP_GLASSES(CFP_Neck_Plain4,CFP_Neck_Wrap4,CUP_G_Oakleys_Clr);
30+
NECKWRAP_GLASSES(CFP_Neck_Plain3,CFP_Neck_Wrap3,CUP_G_Oakleys_Clr);
31+
32+
// Shemags, but same structure
33+
NECKWRAP_GLASSES(CFP_Scarfbeard_green,CFP_Scarfbeardshades_green,CUP_G_Oakleys_Clr);
34+
NECKWRAP_GLASSES(CFP_Scarfbeard_grey,CFP_Scarfbeardshades_grey,CUP_G_Oakleys_Clr);
35+
NECKWRAP_GLASSES(CFP_Scarfbeard_tan,CFP_Scarfbeardshades_tan,CUP_G_Oakleys_Clr);
36+
NECKWRAP_GLASSES(CFP_Scarfbeard_white,CFP_Scarfbeardshades_white,CUP_G_Oakleys_Clr);

0 commit comments

Comments
 (0)