프로젝트명: MMO 스타일 C++ 게임 서버 개발

사용 기술: C++, Windows IOCP, Protocol Buffers

프로젝트 목표:

주요 기능:

서버 구조/ 설계

1️⃣ Actor모델 기반 서버 구조

목적 :

class Actor : public enable_shared_from_this<Actor> {
public:
	void PushJob(unique_ptr<Job> job);
	void ExecuteJob();

protected:
		LockQueue<unique_ptr<Job>> _jobQueue;
};