mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
a8a8ea31df
svn-id: r49341
19 lines
261 B
C++
19 lines
261 B
C++
#ifndef TESTBED_H
|
|
#define TESTBED_H
|
|
|
|
#include "engines/engine.h"
|
|
|
|
namespace Testbed {
|
|
|
|
class TestbedEngine : public Engine {
|
|
public:
|
|
TestbedEngine(OSystem *syst);
|
|
~TestbedEngine();
|
|
|
|
virtual Common::Error run();
|
|
};
|
|
|
|
} // End of namespace Testbed
|
|
|
|
#endif
|