spicetools/games/pcm/pcm.h

12 lines
168 B
C
Raw Permalink Normal View History

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