summaryrefslogtreecommitdiff
path: root/textures.h
blob: 01b8873947e89a331eacd4388bc848cd84a6a083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef ASSET_LOADER_H
#define ASSET_LOADER_H

#include <raylib.h>
#include <stdio.h>

enum texture_enum {
    T_PLAYER,
    T_GRASS,
    T_DIRT,
    T_TOWER,
    T_SKELETON_MOVE,
    T_COUNT
};

extern Texture2D textures[T_COUNT];

#define ASSET_ROOT "asset/"
Texture2D load_texture(const char *path);
void load_textures();
void unload_textures();

#endif