OSDN Git Service

[Modify] 色々怪しいがビルドは通るところまで。 / Various suspicious but the build passes...
[deeangband/Deeangband-new.git] / Deeangband / StartingClass.cpp
1 /*!
2 * @file StartingClass.cpp
3 * @brief \83Q\81[\83\80\92\86\82Ì\90E\8bÆ\82ð\92è\8b`\82·\82é
4 * @date 2014/03/01
5 * @author Deskull
6 * 2014 Sikabane Works.
7 */
8
9 #include "stdafx.h"
10 #include "StartingClass.h"
11
12 namespace Deeangband
13 {
14         StartingClass::StartingClass(void)
15         {
16                 this->WipeData();
17         }
18
19         StartingClass::~StartingClass(void)
20         {
21                 this->WipeData();
22         }
23
24         void StartingClass::WipeData(void)
25         {
26                 CreatureTemplate::WipeData();
27         }
28
29         NAME StartingClass::GetName(void)
30         {
31                 return this->name;
32         }
33
34 }