Tux_Vs_X_ENGINE/src/Debug.c

15 lines
268 B
C
Raw Normal View History

#include <stdio.h>
2021-09-12 19:23:15 +00:00
#include "Main.h"
#include "Debug.h"
void Func_ShowPos()
{
// Ouput Position Infomation in the command line
2021-09-12 19:23:15 +00:00
printf
(
"TuxPos_x = %f TuxPos_y = %f EnemyPos_x = %f EnemyPos_y = %f\n",
TuxPos_x, TuxPos_y, EnemyPos_x, EnemyPos_y
);
}