Move enums to a single directory

A technical change to move all emum files to a single directory
This commit is contained in:
David Markowitz
2022-11-26 14:22:00 -08:00
committed by GitHub
parent 36eecd693d
commit e2616c5f11
16 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#ifndef __ADDFRIENDRESPONSECODE__H__
#define __ADDFRIENDRESPONSECODE__H__
#include <cstdint>
enum class AddFriendResponseCode : uint8_t {
ACCEPTED = 0,
REJECTED,
BUSY,
CANCELLED
};
#endif //!__ADDFRIENDRESPONSECODE__H__