OSDN Git Service

[Modify] 色々怪しいがビルドは通るところまで。 / Various suspicious but the build passes...
[deeangband/Deeangband-new.git] / Deeangband / Ability.h
1 /*!
2  * @file Ability.h
3  * @brief \94­\93®\8bZ\94\\82Ì\83v\83\8d\83g\83^\83C\83v
4  * @date 2014/06/09
5  * @author Deskull
6  * 2013 Sikabane Works.
7  */
8
9 #pragma once
10
11 #include "stdafx.h"
12 #include "Deeangband.h"
13 #include "GameElement.h"
14
15 namespace Deeangband
16 {
17
18         /*! 
19          * @class Ability
20          * @brief \94­\93®\8bZ\94\\82Ì\83N\83\89\83X
21          * @details
22          * <h1>\8aT\97v</h1>
23          * <p>Ability\82Í\83N\83\8a\81[\83`\83\83\81[\82ª\83Q\81[\83\80\92\86\82Ì\88ø\82«\8bN\82±\82·\82 \82ç\82ä\82é\94\\93®\93I\8cø\89Ê\82ð\92è\8b`\82·\82é\81B</p>
24          */
25         class Ability : public GameElement
26         {
27         private:
28
29         public:
30
31                 /*! 
32                 * @brief Ability\83N\83\89\83X\83R\83\93\83X\83g\83\89\83N\83^
33                 */
34                 Ability::Ability(void);
35
36                 /*! 
37                 * @brief Ability\83N\83\89\83X\83f\83X\83g\83\89\83N\83^
38                 */
39                 Ability::~Ability(void);
40
41                 /*! 
42                 * @brief Ability\83N\83\89\83X\82Ì\83f\81[\83^\8fÁ\8b\8e
43                 * @return \82È\82µ
44                 */
45                 void Ability::WipeData(void);
46
47         };
48
49 }
50