mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
27 lines
558 B
C
27 lines
558 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __EBLUEPRINTSAVERESPONSETYPE__H__
|
||
|
#define __EBLUEPRINTSAVERESPONSETYPE__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eBlueprintSaveResponseType : uint32_t {
|
||
|
EverythingWorked = 0,
|
||
|
SaveCancelled,
|
||
|
CantBeginTransaction,
|
||
|
SaveBlueprintFailed,
|
||
|
SaveUgobjectFailed,
|
||
|
CantEndTransaction,
|
||
|
SaveFilesFailed,
|
||
|
BadInput,
|
||
|
NotEnoughBricks,
|
||
|
InventoryFull,
|
||
|
ModelGenerationFailed,
|
||
|
PlacementFailed,
|
||
|
GmLevelInsufficient,
|
||
|
WaitForPreviousSave,
|
||
|
FindMatchesFailed
|
||
|
};
|
||
|
|
||
|
#endif //!__EBLUEPRINTSAVERESPONSETYPE__H__
|