diff --git a/bg.jpg b/bg.jpg deleted file mode 100644 index 9d40322443b462c885324fe5a216ba103ad2f916..0000000000000000000000000000000000000000 Binary files a/bg.jpg and /dev/null differ diff --git a/button.png b/button.png deleted file mode 100644 index 68be830f4f29d2b79af120aefca9881ad80e911e..0000000000000000000000000000000000000000 Binary files a/button.png and /dev/null differ diff --git a/colors.h b/colors.h new file mode 100644 index 0000000000000000000000000000000000000000..14fee9d9aa7d7015aabffac3164245e84aca7319 --- /dev/null +++ b/colors.h @@ -0,0 +1,15 @@ +#ifndef COLORS_INCLUDED +#define COLORS_INCLUDED +#include <SDL.h> + +extern const SDL_Color white; +extern const SDL_Color blue;/*1*/ +extern const SDL_Color green;/*2*/ +extern const SDL_Color red;/*3*/ +extern const SDL_Color purple;/*4*/ +extern const SDL_Color maroon;/*5*/ +extern const SDL_Color turquoise;/*6*/ +extern const SDL_Color black;/*7*/ +extern const SDL_Color grey;/*8*/ + +#endif diff --git a/field.jpg b/field.jpg deleted file mode 100644 index 4789ad7c2d68309232df55d709948443fd605701..0000000000000000000000000000000000000000 Binary files a/field.jpg and /dev/null differ diff --git a/field20.png b/field20.png deleted file mode 100644 index bbd1bd2eab1566cb8936c696698822dff19b76c1..0000000000000000000000000000000000000000 Binary files a/field20.png and /dev/null differ diff --git a/gomb_lil.png b/gomb_lil.png new file mode 100644 index 0000000000000000000000000000000000000000..9b848bdbb2895908ab15b167fa01b2d658463ee9 Binary files /dev/null and b/gomb_lil.png differ diff --git a/gomb_wide.png b/gomb_wide.png new file mode 100644 index 0000000000000000000000000000000000000000..61e792ab62b0d766acb4adbc942709fb43aa3c73 Binary files /dev/null and b/gomb_wide.png differ diff --git a/hatter_glass.png b/hatter_glass.png new file mode 100644 index 0000000000000000000000000000000000000000..297bd6b72759bdbbec922f4dcc415f4a1d979a21 Binary files /dev/null and b/hatter_glass.png differ diff --git a/label.h b/label.h new file mode 100644 index 0000000000000000000000000000000000000000..73869f48fe65ade4de85312f1a88c0a58bf71a92 --- /dev/null +++ b/label.h @@ -0,0 +1,13 @@ +#ifndef LABEL_H_INCLUDED +#define LABEL_H_INCLUDED + +typedef struct Label{ + SDL_Rect rect; + char* text; + SDL_Color color; +} + +void drawLabel(SDL_Surface*,Label*); +void setLabel(Label*,TTF_Font*,SDL_Rect*,char* const,SDL_Color color); + +#endif // LABEL_H_INCLUDED