spicetools/games/scotto/scotto.h

14 lines
233 B
C
Raw Normal View History

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