Files
LGram16 dd97ddec92 Restructure repository to include all source folders
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>
2025-11-29 20:17:20 +09:00

37 lines
1.4 KiB
C++

#ifndef _SEND_CHAR_UPGRADE_ITEM_H_
#define _SEND_CHAR_UPGRADE_ITEM_H_
#include <DB/DBdefine.h>
#include <Item/Item.h>
// 전방 참조
class CSendStream;
namespace GameClientSendPacket
{
// 아이템 인스톨 소켓
bool SendCharInstallSocket(CSendStream& SendStream, unsigned long dwCharID,
Item::ItemPos EquipPos, Item::ItemPos GemPos, Item::CEquipment* lpEquipment, unsigned short wError);
// 아이템 합성
bool SendCharItemChemical(CSendStream& SendStream, unsigned long dwCharID, Item::ItemPos PickkingPos, Item::ItemPos TargetPos,
unsigned short wPickkingID, unsigned char cPickkingNum, Item::CItem* lpResultItem, unsigned short wError);
// 아이템 업그레이드
bool SendCharUpgradeItem(CSendStream& SendStream, unsigned long dwCharID, unsigned long dwCurrentGold,
Item::CItem* lpItem, unsigned char cCurrentMineralNum, unsigned char cValue, unsigned short wError);
// 아이템 옵션 이식
bool SendCharItemOptionGraft(CSendStream& SendStream, unsigned long dwCharID, unsigned long dwCurrentGold,
Item::CItem* lpResultItem, unsigned short wError);
// 아이템 보상 판매
bool SendCharItemCompensation(CSendStream& SendStream, unsigned long dwCharID, unsigned short wError);
// 아이템 룬 설치/제거.
bool SendCharRuneInstallSocket(CSendStream& SendStream, unsigned long dwCharID, Item::ItemPos EquipPos, Item::ItemPos RunePos,
Item::CEquipment* lpEquipment, unsigned char cType, unsigned short wError);
};
#endif