Cyrus Mod Loader
Loading...
Searching...
No Matches
CombatGardeningXPEffectInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 int getXpPercent() { // Property Generated Getter
9 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
10 }
11
12 void setXpPercent(int val) { // Property Generated Setter
13 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
14 }
15
16};
Definition CombatGardeningXPEffectInfo.h:6
void setXpPercent(int val)
Definition CombatGardeningXPEffectInfo.h:12
int getXpPercent()
Definition CombatGardeningXPEffectInfo.h:8
Definition GameEffectInfo.h:5