mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
dispatch request
This commit is contained in:
22
Project Reboot 3.0/FortVolume.h
Normal file
22
Project Reboot 3.0/FortVolume.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "BuildingActor.h"
|
||||
|
||||
enum class EVolumeState : uint8_t
|
||||
{
|
||||
Uninitialized = 0,
|
||||
ReadOnly = 1,
|
||||
Initializing = 2,
|
||||
Ready = 3,
|
||||
EVolumeState_MAX = 4
|
||||
};
|
||||
|
||||
class AFortVolume : public ABuildingActor // ABuildingGameplayActor
|
||||
{
|
||||
public:
|
||||
EVolumeState& GetVolumeState()
|
||||
{
|
||||
static auto VolumeStateOffset = GetOffset("VolumeState");
|
||||
return Get<EVolumeState>(VolumeStateOffset);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user