breakout/breakout.c
2018-01-09 13:22:10 +01:00

17 lines
262 B
C

#include <stdio.h>
#include <stdbool.h>
#include <math.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <SDL2/SDL_ttf.h>
#include "vector.h"
#ifndef __nullptr__
#define Nullptr(type) (type *)0
#endif // __nullptr__
void BREAKOUT_INITIALIZE(){
}