13 lines
110 B
C++
13 lines
110 B
C++
// command.h
|
|
//
|
|
|
|
#pragma once
|
|
|
|
class CCommand
|
|
{
|
|
public:
|
|
virtual ~CCommand() {};
|
|
|
|
virtual void Go()=0;
|
|
};
|