1
0
forked from metin2/server

Rewrote network stack, started working on porting to 64-bit

This commit is contained in:
2022-03-12 11:39:41 +02:00
parent 64596d344c
commit a056345a7b
167 changed files with 1388 additions and 3085 deletions

View File

@@ -18,7 +18,7 @@ class CExchange
bool Accept(bool bIsAccept = true);
void Cancel();
bool AddGold(long lGold);
bool AddGold(int lGold);
bool AddItem(TItemPos item_pos, BYTE display_pos);
bool RemoveItem(BYTE pos);
@@ -44,7 +44,7 @@ class CExchange
BYTE m_abItemDisplayPos[EXCHANGE_ITEM_MAX_NUM];
bool m_bAccept;
long m_lGold;
int m_lGold;
CGrid * m_pGrid;