mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
257afe0cd3
## Link to GitHub Issue, if one exists
n/a
## Description of change
Remove spammy logging in LP
## Testing
It works 👍
20 lines
358 B
C++
20 lines
358 B
C++
#pragma once
|
|
|
|
#include "games/game.h"
|
|
|
|
namespace games::loveplus {
|
|
|
|
extern bool CAMERA_ENABLE;
|
|
|
|
// touch stuff
|
|
void touch_update();
|
|
|
|
class LovePlusGame : public games::Game {
|
|
public:
|
|
LovePlusGame();
|
|
virtual ~LovePlusGame() override;
|
|
virtual void attach() override;
|
|
virtual void detach() override;
|
|
};
|
|
}
|