Guest User

Untitled

a guest
Oct 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.44 KB | None | 0 0
  1. typedef void (*effect_t)(Turn *, Turn *);
  2.  
  3. typedef struct {                                                
  4.     char *name;                                                  
  5.     ActionType types;                                            
  6.     effect_t effect;
  7. } Action;                                                        
  8.                                                                  
  9. Action mkaction(char*, ActionType, effect_t));
Add Comment
Please, Sign In to add comment