Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
966 B
C
20 lines
966 B
C
#ifndef _PACKET_PARSE_H_
|
|
#define _PACKET_PARSE_H_
|
|
|
|
|
|
#include "ParseCharItem.h" // 캐릭터 아이템 관련 패킷 처리 함수
|
|
#include "ParseCharLoginOut.h" // 캐릭터 로그인 아웃 관련 패킷 처리 함수
|
|
#include "ParseCharAttack.h" // 캐릭터 공격 관련 패킷 처리 함수
|
|
#include "ParseCharLevelUp.h" // 캐릭터 레벨업 관련 패킷 처리 함수
|
|
#include "ParseCharEtc.h" // 캐릭터 기타 패킷 처리 함수
|
|
#include "ParseCharSkill.h" // 캐릭터 스킬 관련 패킷 처리 함수
|
|
#include "ParseCharCommunity.h" // 캐릭터 커뮤니티 관련 패킷 처리 함수
|
|
#include "ParseCharUpgradeItem.h" // 캐릭터 업그데이드 아이템 관련 패킷 처리 함수
|
|
#include "ParseCharAdmin.h" // 캐릭터 어드민 관련 패킷 처리 함수
|
|
#include "ParseCharQuest.h" // 캐릭터 퀘스트 관련 패킷 처리 함수
|
|
#include "ParseCharBGServer.h" // 캐릭터 배틀 그라운드 서버군 패킷 처리 함수
|
|
#include "ParseCharCastle.h" // 캐릭터 공성 관련 패킷 처리 함수
|
|
#include "ParseCharChat.h" // 캐릭터 채팅 관련 패킷 처리 함수
|
|
|
|
|
|
#endif |