Cyrus Mod Loader
Loading...
Searching...
No Matches
InfractionBehavior.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorInstance.h>
4#include <Cyrus/Classes/InfractionPenalty.h>
5#include <Cyrus/Classes/InfractionRecord.h>
6#include <Cyrus/Classes/PropertyClass.h>
7
9public:
10 List<SharedPointer<InfractionPenalty>> * getPenalties() { // Property Generated Getter
11 return reinterpret_cast<List<SharedPointer<InfractionPenalty>> *>(reinterpret_cast<uintptr_t>(this) + 0x70);
12 }
13
14 void setPenalties(List<SharedPointer<InfractionPenalty>> * val) { // Property Generated Setter
15 *reinterpret_cast<List<SharedPointer<InfractionPenalty>> **>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
16 }
17
18 List<SharedPointer<InfractionRecord>> * getRecord() { // Property Generated Getter
19 return reinterpret_cast<List<SharedPointer<InfractionRecord>> *>(reinterpret_cast<uintptr_t>(this) + 0x80);
20 }
21
22 void setRecord(List<SharedPointer<InfractionRecord>> * val) { // Property Generated Setter
23 *reinterpret_cast<List<SharedPointer<InfractionRecord>> **>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
24 }
25
26};
Definition BehaviorInstance.h:5
Definition InfractionBehavior.h:8
void setPenalties(List< SharedPointer< InfractionPenalty > > *val)
Definition InfractionBehavior.h:14
void setRecord(List< SharedPointer< InfractionRecord > > *val)
Definition InfractionBehavior.h:22
List< SharedPointer< InfractionPenalty > > * getPenalties()
Definition InfractionBehavior.h:10
List< SharedPointer< InfractionRecord > > * getRecord()
Definition InfractionBehavior.h:18