mirror of
				https://github.com/OpenFusionProject/OpenFusion.git
				synced 2025-10-31 00:30:15 +00:00 
			
		
		
		
	CNProtocol, CNShared, CNStructs and Defines are now in core/. CNLoginServer, CNShardServer and Monitor are now in servers/. core/Core.hpp wraps all the core headers except for CNShared.hpp. Defines.cpp has been renamed to Packets.cpp, and so has its corresponding namespace, but not the header file. This is in preparation for upcoming changes.
		
			
				
	
	
		
			21 lines
		
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * core/CNShared.hpp
 | |
|  *     There's some data shared between the Login Server and the Shard Server. Of course all of this needs to be thread-safe. No mucking about on this one!
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <map>
 | |
| #include <string>
 | |
| 
 | |
| #include "Player.hpp"
 | |
| 
 | |
| namespace CNSharedData {
 | |
|     // serialkey corresponds to player data
 | |
|     extern std::map<int64_t, Player> players;
 | |
| 
 | |
|     void setPlayer(int64_t sk, Player& plr);
 | |
|     Player getPlayer(int64_t sk);
 | |
|     void erasePlayer(int64_t sk);
 | |
| }
 |