mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-26 07:46:51 -05:00
15 lines
261 B
C++
15 lines
261 B
C++
#pragma once
|
|
|
|
#include "games/game.h"
|
|
|
|
namespace games::popn {
|
|
|
|
class POPNGame : public games::Game {
|
|
public:
|
|
POPNGame();
|
|
~POPNGame() override;
|
|
virtual void pre_attach() override;
|
|
virtual void attach() override;
|
|
};
|
|
}
|