Tux_Vs_X_ENGINE/src/Debug.c

15 lines
268 B
C

#include <stdio.h>
#include "Main.h"
#include "Debug.h"
void Func_ShowPos()
{
// Ouput Position Infomation in the command line
printf
(
"TuxPos_x = %f TuxPos_y = %f EnemyPos_x = %f EnemyPos_y = %f\n",
TuxPos_x, TuxPos_y, EnemyPos_x, EnemyPos_y
);
}