SpaceCadetPinball/SpaceCadetPinball/nudge.cpp

27 lines
259 B
C++
Raw Normal View History

2020-12-02 18:12:34 +01:00
#include "pch.h"
#include "nudge.h"
void nudge::un_nudge_right(int x, int y)
{
}
void nudge::un_nudge_left(int x, int y)
{
}
void nudge::un_nudge_up(int x, int y)
{
}
void nudge::nudge_right()
{
}
void nudge::nudge_left()
{
}
void nudge::nudge_up()
{
}