spicetools/games/nost/nost.h
2022-12-16 23:18:35 +09:00

13 lines
187 B
C++

#pragma once
#include "games/game.h"
namespace games::nost {
class NostGame : public games::Game {
public:
NostGame();
virtual void attach() override;
};
}