diff options
Diffstat (limited to 'saedit/sae.h')
-rw-r--r-- | saedit/sae.h | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/saedit/sae.h b/saedit/sae.h index 322eca5..9cbaf09 100644 --- a/saedit/sae.h +++ b/saedit/sae.h @@ -19,45 +19,45 @@ void kill_timeout(guint tag); typedef struct { - int index; - int offsetX; - int offsetY; - int delay; - int line_number; - GdkPixbuf *pixbuf; - cairo_surface_t *surface; + int index; + int offsetX; + int offsetY; + int delay; + int line_number; + GdkPixbuf *pixbuf; + cairo_surface_t *surface; } Frame; Frame *frame_new(int index, int offsetX, int offsetY, int delay); typedef struct { - XMLNode *node; - int offsetX; - int offsetY; - int width; - int height; - int spriteset_width; - int spriteset_height; - GdkPixbuf *spriteset; + XMLNode *node; + int offsetX; + int offsetY; + int width; + int height; + int spriteset_width; + int spriteset_height; + GdkPixbuf *spriteset; } Imageset; Imageset *imageset_new(); typedef struct { - GList *imagesets; - GList *actions; - GList *animations; - GList *animation; - Imageset *imageset; - Frame *sprite; - guint anim_tag; - XMLNode *root; - GtkWidget *imagesets_combo_box; - GtkWidget *actions_combo_box; - GtkWidget *animations_combo_box; - GdkPixbuf *ground; - int offsetX; - int offsetY; + GList *imagesets; + GList *actions; + GList *animations; + GList *animation; + Imageset *imageset; + Frame *sprite; + guint anim_tag; + XMLNode *root; + GtkWidget *imagesets_combo_box; + GtkWidget *actions_combo_box; + GtkWidget *animations_combo_box; + GdkPixbuf *ground; + int offsetX; + int offsetY; } SAEInfo; SAEInfo *sae_info_new(); |