Added enum for rejection statuses

This commit is contained in:
EmosewaMC
2022-03-30 16:14:24 -07:00
parent 04852ac1d9
commit 0bf2f0e92a
2 changed files with 16 additions and 9 deletions

View File

@@ -40,5 +40,11 @@ namespace GameMessages
char PrivacyOption = 0;
float MaxBuildHeight = 128.0f;
std::vector<NiPoint3> Paths = {};
private:
enum RejectionStatus : uint32_t {
REJECTION_STATUS_APPROVED = 0,
REJECTION_STATUS_PENDING = 1,
REJECTION_STATUS_REJECTED = 2
};
};
}