mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
16 lines
245 B
C++
16 lines
245 B
C++
#pragma once
|
|
|
|
#ifndef __EADDFRIENDRESPONSECODE__H__
|
|
#define __EADDFRIENDRESPONSECODE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eAddFriendResponseCode : uint8_t {
|
|
ACCEPTED = 0,
|
|
REJECTED,
|
|
BUSY,
|
|
CANCELLED
|
|
};
|
|
|
|
#endif //!__ADDFRIENDRESPONSECODE__H__
|