main
Jonathan Hager 3 years ago
parent c409f0a9ee
commit 31ac3e9392
Signed by: JonathanHager
GPG Key ID: 34881E488569708C

@ -3,7 +3,6 @@
#include "stdlib.h" #include "stdlib.h"
#include "../sprite.h" #include "../sprite.h"
#include "../IsometricMap/tile.h" #include "../IsometricMap/tile.h"
#include "../main.c"
Bucket * BucketInit(void *data, int type){ Bucket * BucketInit(void *data, int type){
Bucket *bucket = malloc(sizeof(Bucket)); Bucket *bucket = malloc(sizeof(Bucket));

@ -9,13 +9,11 @@
#include "game.h" #include "game.h"
#include "DepthSorting/bucket.h" #include "DepthSorting/bucket.h"
Game *game;
int main(){ int main(){
InitWindow(800, 450, "basic window"); InitWindow(800, 450, "basic window");
game = GameInit(); Game *game = GameInit();
// Hides the operating systems own cursor // Hides the operating systems own cursor
HideCursor(); HideCursor();

Loading…
Cancel
Save