X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/830829dec0596760d0cba38d959ab2646112f61b..0cafec445af0a97d96feb1a1daefa1486142c73f:/src/actor.h diff --git a/src/actor.h b/src/actor.h deleted file mode 100644 index 8bb7a88..0000000 --- a/src/actor.h +++ /dev/null @@ -1,30 +0,0 @@ -// -// actor.h -// Super Polarity -// -// Created by Ruben Beltran del Rio on 8/14/13. -// Copyright (c) 2013 Abuguet. All rights reserved. -// - -#ifndef Super_Polarity_actor_h -#define Super_Polarity_actor_h - -#include "SDL2/SDL.h" -#include "SDL2_image/SDL_image.h" - -typedef struct actor_struct Actor; - -typedef struct actor_struct { - SDL_Point pos; - SDL_Point vel; - SDL_Point acc; - SDL_Rect textureBox; - SDL_Texture *texture; - double angle; - void (*update)(Actor *, Uint32); - void (*draw)(Actor *); -} Actor; - -Actor* createActor(); - -#endif