summaryrefslogtreecommitdiffstats
path: root/src/game/client/chunk_mesher.hh
blob: 36580ac7141f5a1afc61cddc94357767beab5a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CLIENT_CHUNK_MESHER_HH
#define CLIENT_CHUNK_MESHER_HH 1
#pragma once

#include "client/chunk_vbo.hh"

struct ChunkMeshComponent final {
    std::vector<ChunkVBO> quad_nb;
    std::vector<ChunkVBO> quad_b;
};

namespace chunk_mesher
{
void init(void);
void deinit(void);
void update(void);
} // namespace chunk_mesher

#endif /* CLIENT_CHUNK_MESHER_HH  */