mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-15 19:11:20 +00:00
16 lines
230 B
C++
16 lines
230 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
|