OSDN Git Service

[Modify] 色々怪しいがビルドは通るところまで。 / Various suspicious but the build passes...
[deeangband/Deeangband-new.git] / Deeangband / Air.cpp
1 /*!
2 * @file Air.cpp
3 * @brief \83Q\81[\83\80\92\86\82Ì\91å\8bC\92n\8c`\8fî\95ñ\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 "Air.h"
11
12 namespace Deeangband
13 {
14
15         Air::Air(void) : GameElement(), HaveSymbol(), HaveHp()
16         {
17                 WipeData();
18         }
19
20         Air::~Air(void)
21         {
22                 WipeData();
23         }
24
25         void Air::WipeData(void)
26         {
27                 return;
28         }
29
30 }