18 lines
374 B
C++
18 lines
374 B
C++
#pragma once
|
|
|
|
#include "renpy/interpreter.h"
|
|
|
|
namespace renpy {
|
|
|
|
namespace menu {
|
|
constexpr int width = 480;
|
|
constexpr int height = 40;
|
|
constexpr int x = 400;
|
|
constexpr int y = 100;
|
|
constexpr int yStride = 100;
|
|
};
|
|
|
|
bool overlap(int width, int height, int x, int y, int mx, int my);
|
|
void update(interpreter & state, int mx, int my, bool mLeft);
|
|
}
|