OSDN Git Service

インクルードファイル指定と未使用変数警告の修正。 / Fix loading include files and unused value warnings,
[deeangband/Deeangband-new.git] / Deeangband / Ability.cpp
1 /*!
2  * @file Ability.cpp
3  * @brief Ability\83N\83\89\83X\82Ì\92è\8b`
4  * @date 2014/06/10
5  * @author Deskull
6  * 2013 Sikabane Works.
7  */
8
9 #include "stdafx.h"
10 #include "Ability.h"
11
12 namespace Deeangband
13 {
14
15         Ability::Ability(void) : GameElement()
16         {
17                 this->WipeData();
18         }
19
20         Ability::~Ability(void)
21         {
22                 this->WipeData();
23         }
24
25         void Ability::WipeData(void)
26         {
27         }
28
29 }