17 lines
262 B
C
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(){
|
||
|
|
||
|
}
|