OSDN Git Service

ゲーム時間経過処理を実装中 / Implementing game time processing.
[deeangband/Deeangband-new.git] / Deeangband / ItemEgo.cpp
1 /*!
2 * @file ItemEgo.cpp
3 * @brief \83Q\81[\83\80\92\86\82Ì\83A\83C\83e\83\80\83G\83S\82ð\92è\8b`\82·\82é
4 * @date 2013/12/11
5 * @author Deskull
6 * 2013 Sikabane Works.
7 */
8
9 #include "stdafx.h"
10 #include "ItemEgo.h"
11
12 namespace Deeangband 
13 {
14         ItemEgo::ItemEgo(void) : ItemTemplate()
15         {
16                 this->WipeData();
17         }
18
19         ItemEgo::~ItemEgo(void)
20         {
21         }
22
23         void ItemEgo::WipeData(void)
24         {
25                 this->name = "";
26                 this->weight = 0;
27         }
28 }