mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
e2616c5f11
A technical change to move all emum files to a single directory
16 lines
242 B
C++
16 lines
242 B
C++
#pragma once
|
|
|
|
#ifndef __ADDFRIENDRESPONSECODE__H__
|
|
#define __ADDFRIENDRESPONSECODE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class AddFriendResponseCode : uint8_t {
|
|
ACCEPTED = 0,
|
|
REJECTED,
|
|
BUSY,
|
|
CANCELLED
|
|
};
|
|
|
|
#endif //!__ADDFRIENDRESPONSECODE__H__
|