summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.h
blob: 76fd1d2015b0ad448938d129895faff34aebef06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __CMDATTENTION_H__
#define __CMDATTENTION_H__

#include "Command.h"

class CmdAttention : public Command {

public:

    CmdAttention(mDot* dot);   
    CmdAttention(mDot* dot, const char* name, const char* text, const char* desc);
    virtual uint32_t action(std::vector<std::string> args);
    
private:
};

#endif // __CMDATTENTION_H__