12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "CCustomTextEntry.h"
- #include "CFTTLangDatabase.h"
- #include "memctrl.h"
- //-------------------------------------------------------------------------------------------------
- //00221034
- CCustomTextEntry::CCustomTextEntry() {
- }
- //-------------------------------------------------------------------------------------------------
- //00221074
- CCustomTextEntry::CCustomTextEntry(CCustomTextEntry const &other) {
- }
- //-------------------------------------------------------------------------------------------------
- //002210E6 //^_^
- CCustomTextEntry::~CCustomTextEntry() {
- }
- //-------------------------------------------------------------------------------------------------
- //00220F68
- bool CCustomTextEntry::IsValid() {
- return 1;
- }
- //-------------------------------------------------------------------------------------------------
- //00220F6C
- int CCustomTextEntry::GetTextID() {
- return 1;
- }
- //-------------------------------------------------------------------------------------------------
- //00220F70
- wchar_t *CCustomTextEntry::GetString(ELangType e) {
- return nullptr;
- }
- //-------------------------------------------------------------------------------------------------
- //00221022 //^_^
- CCustomTextEntry &CCustomTextEntry::operator=(CCustomTextEntry const &other) {
- return *this;
- }
- //-------------------------------------------------------------------------------------------------
- //00221080
- void CCustomTextEntry::CopyMembers(CCustomTextEntry const &other) {
- }
- //-------------------------------------------------------------------------------------------------
- //00221122
- int CCustomTextEntry::SetTextEntry(CFTTLangDatabase *other, char const *pStr, ELangType eType) {
- return 0;
- }
- //-------------------------------------------------------------------------------------------------
|