Cyrus Mod Loader
Loading...
Searching...
No Matches
MatchCostAdjustment.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Enums/MatchCostAdjustment__ADJUSTMENT_TYPE.h>
5
7public:
8 MatchCostAdjustment__ADJUSTMENT_TYPE getMatchAdjustmentType() { // Property Generated Getter
9 return *reinterpret_cast<MatchCostAdjustment__ADJUSTMENT_TYPE*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setMatchAdjustmentType(MatchCostAdjustment__ADJUSTMENT_TYPE val) { // Property Generated Setter
13 *reinterpret_cast<MatchCostAdjustment__ADJUSTMENT_TYPE*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16};
Definition MatchCostAdjustment.h:6
void setMatchAdjustmentType(MatchCostAdjustment__ADJUSTMENT_TYPE val)
Definition MatchCostAdjustment.h:12
MatchCostAdjustment__ADJUSTMENT_TYPE getMatchAdjustmentType()
Definition MatchCostAdjustment.h:8
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86