mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-25 07:16:47 -05:00
14 lines
203 B
C++
14 lines
203 B
C++
#pragma once
|
|
|
|
#include "games/game.h"
|
|
|
|
namespace games::rb {
|
|
|
|
class RBGame : public games::Game {
|
|
public:
|
|
RBGame();
|
|
virtual void attach();
|
|
virtual void detach();
|
|
};
|
|
}
|