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