diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-02-03 09:55:31 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-02-03 09:55:31 -0600 |
| commit | 0cafec445af0a97d96feb1a1daefa1486142c73f (patch) | |
| tree | 818df31eec1895518ad805219b79bc63f9f616aa /src/actor_manager.h | |
| parent | 830829dec0596760d0cba38d959ab2646112f61b (diff) | |
Removes old stuff, adds mac proj
Diffstat (limited to 'src/actor_manager.h')
| -rw-r--r-- | src/actor_manager.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/actor_manager.h b/src/actor_manager.h deleted file mode 100644 index 900c57c..0000000 --- a/src/actor_manager.h +++ /dev/null @@ -1,32 +0,0 @@ -// -// actor_manager.h -// Super Polarity -// -// Created by Ruben Beltran del Rio on 8/14/13. -// Copyright (c) 2013 Abuguet. All rights reserved. -// - -#ifndef Super_Polarity_actor_manager_h -#define Super_Polarity_actor_manager_h - -#include "SDL2/SDL.h" -#include "actor.h" - -typedef struct actor_manager ActorManager; -typedef struct actor_node ActorNode; - -typedef struct actor_manager { - ActorNode *actors; - void (*update)(ActorManager *, Uint32); - void (*draw)(ActorManager *); - void (*addActor)(ActorManager *, Actor *); -} ActorManager; - -typedef struct actor_node { - Actor *val; - ActorNode *next; -} ActorNode; - -ActorManager* createActorManager(); - -#endif |