33 lines
647 B
C++
33 lines
647 B
C++
#ifndef _NA_0_20110613_GAME_SHOP_RENEWAL
|
|
|
|
|
|
|
|
//=============================================================================================================================
|
|
/// BuyHistory class
|
|
/**
|
|
@author Kim Min Wook < taiyo@webzen.com >
|
|
@since 2007. 1. 19
|
|
@remark
|
|
- 备概 捞仿
|
|
@note
|
|
- 眠饶 备泅且 抗沥
|
|
@history
|
|
-
|
|
*/
|
|
//=============================================================================================================================
|
|
|
|
#pragma once
|
|
|
|
#include "History.h"
|
|
|
|
class BuyHistory : public History
|
|
{
|
|
public:
|
|
BuyHistory(void);
|
|
virtual ~BuyHistory(void);
|
|
};
|
|
|
|
|
|
|
|
#endif // not defined _NA_0_20110613_GAME_SHOP_RENEWAL
|