spicetools/games/silentscope/silentscope.h

15 lines
233 B
C
Raw Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include "games/game.h"
namespace games::silentscope {
class SilentScopeGame : public games::Game {
public:
SilentScopeGame();
void attach() override;
void detach() override;
};
}