mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): added definitions for a handful of UI objects
This commit is contained in:
parent
ac20b7a227
commit
8ff5db67f2
39 changed files with 4484 additions and 183 deletions
37
profile/3.3.5a-windows/include/ui/backdropgenerator.h
Normal file
37
profile/3.3.5a-windows/include/ui/backdropgenerator.h
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#ifndef UI_BACKDROP_GENERATOR_H
|
||||
#define UI_BACKDROP_GENERATOR_H
|
||||
|
||||
#include "tempest/vector.h"
|
||||
#include "ui/simpletexture.h"
|
||||
|
||||
struct CBackdropGenerator {
|
||||
CSimpleTexture* m_backgroundTexture;
|
||||
CSimpleTexture* m_leftTexture;
|
||||
CSimpleTexture* m_rightTexture;
|
||||
CSimpleTexture* m_topTexture;
|
||||
CSimpleTexture* m_bottomTexture;
|
||||
CSimpleTexture* m_topLeftTexture;
|
||||
CSimpleTexture* m_topRightTexture;
|
||||
CSimpleTexture* m_bottomLeftTexture;
|
||||
CSimpleTexture* m_bottomRightTexture;
|
||||
uint32_t dword24;
|
||||
uint32_t dword28;
|
||||
uint32_t dword2C;
|
||||
uint32_t dword30;
|
||||
uint32_t dword34;
|
||||
uint32_t dword38;
|
||||
uint32_t dword3C;
|
||||
uint32_t dword40;
|
||||
uint32_t dword44;
|
||||
uint32_t dword48;
|
||||
uint32_t dword4C;
|
||||
uint32_t dword50;
|
||||
uint32_t dword54;
|
||||
uint32_t dword58;
|
||||
uint32_t dword5C;
|
||||
uint32_t dword60;
|
||||
CImVector m_borderColor;
|
||||
uint32_t dword68;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue