Cyrus Mod Loader
Loading...
Searching...
No Matches
BountyGoalTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/GoalTemplate.h>
5#include <Cyrus/Classes/PropertyClass.h>
6#include <Cyrus/Enums/BountyGoalTemplate__BOUNTY_TYPE.h>
7
9public:
10 List<std::string> getNpcAdjectives() { // Property Generated Getter
11 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x208);
12 }
13
14 void setNpcAdjectives(List<std::string> val) { // Property Generated Setter
15 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x208) = val;
16 }
17
18 int getBountyTotal() { // Property Generated Getter
19 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x218);
20 }
21
22 void setBountyTotal(int val) { // Property Generated Setter
23 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x218) = val;
24 }
25
26 BountyGoalTemplate__BOUNTY_TYPE getBountyType() { // Property Generated Getter
27 return *reinterpret_cast<BountyGoalTemplate__BOUNTY_TYPE*>(reinterpret_cast<uintptr_t>(this) + 0x21C);
28 }
29
30 void setBountyType(BountyGoalTemplate__BOUNTY_TYPE val) { // Property Generated Setter
31 *reinterpret_cast<BountyGoalTemplate__BOUNTY_TYPE*>(reinterpret_cast<uintptr_t>(this) + 0x21C) = val;
32 }
33
34};
Definition BountyGoalTemplate.h:8
BountyGoalTemplate__BOUNTY_TYPE getBountyType()
Definition BountyGoalTemplate.h:26
void setBountyType(BountyGoalTemplate__BOUNTY_TYPE val)
Definition BountyGoalTemplate.h:30
void setBountyTotal(int val)
Definition BountyGoalTemplate.h:22
List< std::string > getNpcAdjectives()
Definition BountyGoalTemplate.h:10
void setNpcAdjectives(List< std::string > val)
Definition BountyGoalTemplate.h:14
int getBountyTotal()
Definition BountyGoalTemplate.h:18
Definition GoalTemplate.h:7