mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
Add InputMethodEditor (#188)
This commit is contained in:
parent
7649a6bae9
commit
0fdaa5d374
@ -35,6 +35,7 @@
|
|||||||
#include "game_files/CGameConfig.hpp"
|
#include "game_files/CGameConfig.hpp"
|
||||||
#include "game_files/GameDataHash.hpp"
|
#include "game_files/GameDataHash.hpp"
|
||||||
#include "misc/CTunables.hpp"
|
#include "misc/CTunables.hpp"
|
||||||
|
#include "misc/InputMethodEditor.hpp"
|
||||||
#include "misc/vfx/TimecycleKeyframeData.hpp"
|
#include "misc/vfx/TimecycleKeyframeData.hpp"
|
||||||
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
||||||
#include "netsync/CProjectSyncTree.hpp"
|
#include "netsync/CProjectSyncTree.hpp"
|
||||||
|
16
misc/InputMethodEditor.hpp
Normal file
16
misc/InputMethodEditor.hpp
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
#pragma pack(push, 8)
|
||||||
|
class InputMethodEditor
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
uint32_t m_count; //0x0000
|
||||||
|
uint32_t m_selected_index; //0x0004
|
||||||
|
char16_t m_composition_string[31]; //0x0008
|
||||||
|
char16_t m_candidate_list[9][31]; //0x0046
|
||||||
|
bool m_active; //0x0274
|
||||||
|
char pad_0275[3]; //0x0275
|
||||||
|
}; //Size: 0x0278
|
||||||
|
static_assert(sizeof(InputMethodEditor) == 0x278);
|
||||||
|
#pragma pack(pop)
|
Loading…
Reference in New Issue
Block a user