mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
ca70f7b19c
## Link to GitHub Issue or related Pull Request, if one exists #618 ## Description of change Enhance game detection logic. Fix heap size.
20 lines
409 B
C++
20 lines
409 B
C++
#pragma once
|
|
|
|
#include "avs/game.h"
|
|
#include "games/game.h"
|
|
|
|
namespace games::popn {
|
|
|
|
static inline bool is_pikapika_model() {
|
|
return (avs::game::is_model("M39") && avs::game::SPEC[0] == 'D');
|
|
}
|
|
|
|
class POPNGame : public games::Game {
|
|
public:
|
|
POPNGame();
|
|
~POPNGame() override;
|
|
virtual void pre_attach() override;
|
|
virtual void attach() override;
|
|
};
|
|
}
|