-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from psiberx/master
Fixed Variant and decoded more widget classes
- Loading branch information
Showing
6 changed files
with
73 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#pragma once | ||
|
||
#include <RED4ext/Common.hpp> | ||
#include <RED4ext/Scripting/Natives/Generated/Vector2.hpp> | ||
#include <RED4ext/Scripting/Natives/Generated/ink/UITransform.hpp> | ||
|
||
namespace RED4ext::ink | ||
{ | ||
struct DrawArea | ||
{ | ||
static constexpr const char* NAME = "inkDrawArea"; | ||
static constexpr const char* ALIAS = NAME; | ||
|
||
Vector2 size; // 00 | ||
float scale; // 08 | ||
Vector2 relativePosition; // 0C | ||
Vector2 absolutePosition; // 14 | ||
UITransform transform; // 1C | ||
}; | ||
RED4EXT_ASSERT_SIZE(DrawArea, 0x4C); | ||
} // namespace RED4ext::ink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters