Cyrus Mod Loader
Loading...
Searching...
No Matches
CustomNameOptions.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CharacterSet.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 unsigned int getCustomNameMaxLength() { // Property Generated Getter
9 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setCustomNameMaxLength(unsigned int val) { // Property Generated Setter
13 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 unsigned int getCustomNameMinLength() { // Property Generated Getter
17 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
18 }
19
20 void setCustomNameMinLength(unsigned int val) { // Property Generated Setter
21 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
22 }
23
24 Vector<std::wstring> getSubStringNameExceptions() { // Property Generated Getter
25 return *reinterpret_cast<Vector<std::wstring>*>(reinterpret_cast<uintptr_t>(this) + 0x58);
26 }
27
28 void setSubStringNameExceptions(Vector<std::wstring> val) { // Property Generated Setter
29 *reinterpret_cast<Vector<std::wstring>*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
30 }
31
32 std::wstring getSingleCharExceptions() { // Property Generated Getter
33 return *reinterpret_cast<std::wstring*>(reinterpret_cast<uintptr_t>(this) + 0x70);
34 }
35
36 void setSingleCharExceptions(std::wstring val) { // Property Generated Setter
37 *reinterpret_cast<std::wstring*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
38 }
39
40 bool getCaseInsensitive() { // Property Generated Getter
41 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x50);
42 }
43
44 void setCaseInsensitive(bool val) { // Property Generated Setter
45 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
46 }
47
48 List<SharedPointer<CharacterSet>> * getCharSetCosts() { // Property Generated Getter
49 return reinterpret_cast<List<SharedPointer<CharacterSet>> *>(reinterpret_cast<uintptr_t>(this) + 0xB8);
50 }
51
52 void setCharSetCosts(List<SharedPointer<CharacterSet>> * val) { // Property Generated Setter
53 *reinterpret_cast<List<SharedPointer<CharacterSet>> **>(reinterpret_cast<uintptr_t>(this) + 0xB8) = val;
54 }
55
56};
Definition CustomNameOptions.h:6
bool getCaseInsensitive()
Definition CustomNameOptions.h:40
void setCustomNameMinLength(unsigned int val)
Definition CustomNameOptions.h:20
void setSingleCharExceptions(std::wstring val)
Definition CustomNameOptions.h:36
unsigned int getCustomNameMaxLength()
Definition CustomNameOptions.h:8
unsigned int getCustomNameMinLength()
Definition CustomNameOptions.h:16
Vector< std::wstring > getSubStringNameExceptions()
Definition CustomNameOptions.h:24
void setCustomNameMaxLength(unsigned int val)
Definition CustomNameOptions.h:12
std::wstring getSingleCharExceptions()
Definition CustomNameOptions.h:32
void setSubStringNameExceptions(Vector< std::wstring > val)
Definition CustomNameOptions.h:28
void setCaseInsensitive(bool val)
Definition CustomNameOptions.h:44
void setCharSetCosts(List< SharedPointer< CharacterSet > > *val)
Definition CustomNameOptions.h:52
List< SharedPointer< CharacterSet > > * getCharSetCosts()
Definition CustomNameOptions.h:48
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86