CommonLibSSE NG
TintMask.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/T/TESTexture.h"
4 #include "RE/C/Color.h"
5 
6 namespace RE
7 {
8  class TintMask
9  {
10  public:
11  enum class Type
12  {
13  kFrekles = 0,
14  kLips,
15  kCheeks,
16  kEyeliner,
19  kSkinTone,
20  kWarPaint,
23  kNose,
24  kChin,
25  kNeck,
26  kForehead,
27  kDirt,
28 
29  kTotal
30  };
31 
32  // members
35  float alpha;
37  };
38  static_assert(sizeof(TintMask) == 0x18);
39 }
Definition: TESTexture.h:10
Definition: TintMask.h:9
TESTexture * texture
Definition: TintMask.h:33
stl::enumeration< Type, std::uint32_t > type
Definition: TintMask.h:36
float alpha
Definition: TintMask.h:35
Color color
Definition: TintMask.h:34
Type
Definition: TintMask.h:12
Definition: AbsorbEffect.h:6
Definition: Color.h:8