Cyrus Mod Loader
Loading...
Searching...
No Matches
CombatPetXPEffectInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getLootTableName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
10 }
11
12 void setLootTableName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
14 }
15
16 std::string getDescription() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
18 }
19
20 void setDescription(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
22 }
23
24};
Definition CombatPetXPEffectInfo.h:6
void setDescription(std::string val)
Definition CombatPetXPEffectInfo.h:20
std::string getLootTableName()
Definition CombatPetXPEffectInfo.h:8
std::string getDescription()
Definition CombatPetXPEffectInfo.h:16
void setLootTableName(std::string val)
Definition CombatPetXPEffectInfo.h:12
Definition GameEffectInfo.h:5