35 lines
702 B
C++
35 lines
702 B
C++
#ifndef _NA_0_20110613_GAME_SHOP_RENEWAL
|
|
|
|
|
|
|
|
//=============================================================================================================================
|
|
/// PresentSendBox class
|
|
/**
|
|
@author Kim Min Wook < taiyo@webzen.com >
|
|
@since 2007. 1. 19
|
|
@remark
|
|
- 보낸 선물함 이력
|
|
@note
|
|
- 현재는 구현 안하고 추후 구현할 예정
|
|
@history
|
|
-
|
|
*/
|
|
//=============================================================================================================================
|
|
|
|
#pragma once
|
|
|
|
#include "History.h"
|
|
|
|
class PresentSendBox : public History
|
|
{
|
|
public:
|
|
PresentSendBox(void);
|
|
virtual ~PresentSendBox(void);
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
#endif // not defined _NA_0_20110613_GAME_SHOP_RENEWAL
|