Skip to content
Snippets Groups Projects
Commit 27d3baa4 authored by Czémán Barnabás's avatar Czémán Barnabás
Browse files

Uj grafika

parent d55e096f
No related branches found
No related tags found
No related merge requests found
bg.jpg

31.8 KiB

button.png

414 B

colors.h 0 → 100644
#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
field.jpg

2.45 KiB

field20.png

243 B

gomb_lil.png

3.28 KiB

gomb_wide.png

78.3 KiB

hatter_glass.png

1.17 MiB

label.h 0 → 100644
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment