Skip to content
Snippets Groups Projects
Commit 4531ca3c authored by tobiglaser's avatar tobiglaser
Browse files

implement Command

parents
No related branches found
No related tags found
No related merge requests found
#pragma once
#include <string>
class Command
{
private:
std::string name;
public:
Command(std::string _name) { name = _name; }
std::string getName() { return name; }
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment