18 lines
193 B
C++
18 lines
193 B
C++
#pragma once
|
|
|
|
namespace cursor {
|
|
|
|
struct cursor {
|
|
bool active;
|
|
float x;
|
|
float y;
|
|
bool a;
|
|
bool b;
|
|
};
|
|
|
|
extern struct cursor state[4];
|
|
|
|
void init();
|
|
void update();
|
|
}
|