Added window animation rules
This commit is contained in:
parent
cba4693d39
commit
d7ad80e6a2
5 changed files with 85 additions and 33 deletions
|
|
@ -9,6 +9,10 @@ struct SWindowSpecialRenderData {
|
|||
float alpha = 1.f;
|
||||
};
|
||||
|
||||
struct SWindowAdditionalConfigData {
|
||||
std::string animationStyle = "";
|
||||
};
|
||||
|
||||
class CWindow {
|
||||
public:
|
||||
CWindow();
|
||||
|
|
@ -81,6 +85,7 @@ public:
|
|||
|
||||
// Special render data, rules, etc
|
||||
SWindowSpecialRenderData m_sSpecialRenderData;
|
||||
SWindowAdditionalConfigData m_sAdditionalConfigData;
|
||||
|
||||
// For the list lookup
|
||||
bool operator==(const CWindow& rhs) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue