20 lines
402 B
C++
20 lines
402 B
C++
#pragma once
|
|
|
|
#include "Helpers.h"
|
|
#include "Configuration.h"
|
|
|
|
#include "Hooks/CRoblox.h"
|
|
|
|
#ifdef SERVER
|
|
|
|
struct DataModel
|
|
{
|
|
void* padding1[CLASSPADDING_DATAMODEL__JOBID];
|
|
std::string jobId;
|
|
};
|
|
|
|
typedef INT(__thiscall* DataModel__getJobId_t)(DataModel* _this, int a2);
|
|
int __fastcall DataModel__getJobId_hook(DataModel* _this, void*, int a2);
|
|
extern DataModel__getJobId_t DataModel__getJobId;
|
|
|
|
#endif |