mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-11-04 06:32:00 +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__
 |