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