mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
a143b820af
render occlude list.
20 lines
451 B
C++
20 lines
451 B
C++
#pragma once
|
|
class nudge
|
|
{
|
|
public:
|
|
static void un_nudge_right(int timerId, void* caller);
|
|
static void un_nudge_left(int timerId, void* caller);
|
|
static void un_nudge_up(int timerId, void* caller);
|
|
static void nudge_right();
|
|
static void nudge_left();
|
|
static void nudge_up();
|
|
|
|
static int nudged_left;
|
|
static int nudged_right;
|
|
static int nudged_up;
|
|
static float nudge_count;
|
|
private:
|
|
static void _nudge(float x, float y);
|
|
static int timer;
|
|
};
|