diff options
author | Vasily_Makarov <danilka.pro@gmail.com> | 2012-02-09 12:07:10 +0400 |
---|---|---|
committer | Vasily_Makarov <danilka.pro@gmail.com> | 2012-02-09 12:07:10 +0400 |
commit | cc459a0b40bb56f6559c855ecb5b956b9ee6a90b (patch) | |
tree | 8698d1e99eec34b24f14f21c176871b88863fa18 /saedit/sae.h | |
parent | 6545f58904d754db19800a1cd21f472eb13339bd (diff) | |
download | evol-tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.gz evol-tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.bz2 evol-tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.tar.xz evol-tools-cc459a0b40bb56f6559c855ecb5b956b9ee6a90b.zip |
SAE: Changed error structure
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(); |