22 lines
No EOL
258 B
C++
22 lines
No EOL
258 B
C++
#ifndef SKILL_1_COMMAND_H
|
|
#define SKILL_1_COMMAND_H
|
|
|
|
class Skill1Command
|
|
{
|
|
private:
|
|
/* data */
|
|
public:
|
|
Skill1Command(/* args */);
|
|
~Skill1Command();
|
|
};
|
|
|
|
Skill1Command::Skill1Command(/* args */)
|
|
{
|
|
}
|
|
|
|
Skill1Command::~Skill1Command()
|
|
{
|
|
}
|
|
|
|
|
|
#endif |