5 // Created by Ruben Beltran del Rio on 8/14/13.
6 // Copyright (c) 2013 Abuguet. All rights reserved.
9 #ifndef Super_Polarity_actor_manager_h
10 #define Super_Polarity_actor_manager_h
15 typedef struct actor_manager ActorManager
;
16 typedef struct actor_node ActorNode
;
18 typedef struct actor_manager
{
20 void (*update
)(ActorManager
*, Uint32
);
21 void (*draw
)(ActorManager
*);
22 void (*addActor
)(ActorManager
*, Actor
*);
25 typedef struct actor_node
{
30 ActorManager
* createActorManager();