summaryrefslogtreecommitdiff
path: root/src/resources/TextruesAtlas.h
blob: 5fdafc398dbabfdad49df6b2a96e25a181648f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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