spicetools/games/nost/nost.h

13 lines
187 B
C
Raw Normal View History

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