OSDN Git Service

[Modify] 色々怪しいがビルドは通るところまで。 / Various suspicious but the build passes...
[deeangband/Deeangband-new.git] / Deeangband / HaveInventory.cpp
1 /*!
2 * @file HaveInventory.cpp
3 * @brief HaveInventory\83N\83\89\83X\82Ì\92è\8b`
4 * @date 2014/06/17
5 * @author Deskull
6 * 2014 Sikabane Works.
7 */
8
9 #include "stdafx.h"
10 #include "HaveInventory.h"
11
12 namespace Deeangband
13 {
14
15         HaveInventory::HaveInventory(void)
16         {
17                 this->WipeData();
18         }
19
20         HaveInventory::~HaveInventory(void)
21         {
22                 this->WipeData();
23         }
24
25         void HaveInventory::WipeData(void)
26         {
27                 this->itemList.clear();
28         }
29
30 }