Cyrus Mod Loader
Loading...
Searching...
No Matches
AddSpellLootInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/LootInfo.h>
4#include <Cyrus/Classes/LootInfoBase.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
7class AddSpellLootInfo : public LootInfo {
8public:
9 std::string getSpellName() { // Property Generated Getter
10 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
11 }
12
13 void setSpellName(std::string val) { // Property Generated Setter
14 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
15 }
16
17 std::string getInternalName() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
19 }
20
21 void setInternalName(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
23 }
24
25 unsigned int getSpellID() { // Property Generated Getter
26 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90);
27 }
28
29 void setSpellID(unsigned int val) { // Property Generated Setter
30 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
31 }
32
33};
Definition AddSpellLootInfo.h:7
void setInternalName(std::string val)
Definition AddSpellLootInfo.h:21
void setSpellName(std::string val)
Definition AddSpellLootInfo.h:13
std::string getSpellName()
Definition AddSpellLootInfo.h:9
std::string getInternalName()
Definition AddSpellLootInfo.h:17
unsigned int getSpellID()
Definition AddSpellLootInfo.h:25
void setSpellID(unsigned int val)
Definition AddSpellLootInfo.h:29
Definition LootInfo.h:7