diff options
| author | physick <mynameisgennadiy@vk.com> | 2026-07-31 18:36:22 +0500 |
|---|---|---|
| committer | physick <mynameisgennadiy@vk.com> | 2026-07-31 18:36:22 +0500 |
| commit | 722a9d1e729aff2eb64f3c064c33d547ea980eb0 (patch) | |
| tree | fb03a4f5bf76d1274565ef261e7f2e3a579a0823 /src/resources/TextruesAtlas.h | |
| parent | e20b4c3a5dfe081fa2d6d772617307fae4689698 (diff) | |
Buttons GUI start
Diffstat (limited to 'src/resources/TextruesAtlas.h')
| -rw-r--r-- | src/resources/TextruesAtlas.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/resources/TextruesAtlas.h b/src/resources/TextruesAtlas.h new file mode 100644 index 0000000..5fdafc3 --- /dev/null +++ b/src/resources/TextruesAtlas.h @@ -0,0 +1,18 @@ +/* + * This header file binds texture type to its location on the atlas. + * They are hardcoded for now until I find a better way to do that. + */ + +#include <raylib.h> + +#ifndef TEXTURES_ATLAS_H +#define TEXTURES_ATLAS_H + +static const Rectangle SUBMIT_BUTTON_LOCATION = { + .x = 0, + .y = 0, + .width = 32, + .height = 32, +}; + +#endif // TEXTURES_ATLAS_H |
