18 lines
327 B
C++
18 lines
327 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "Scene.h"
|
|
#include "GameEngine.h"
|
|
|
|
class PyScene: public Scene
|
|
{
|
|
|
|
public:
|
|
PyScene(GameEngine*);
|
|
void update() override final;
|
|
void doAction(std::string, std::string) override final;
|
|
void sRender() override final;
|
|
|
|
void do_mouse_input(std::string, std::string);
|
|
};
|