summaryrefslogtreecommitdiffstats
path: root/src/game/client/chunk_mesher.hh
blob: ca234f01babe115e95fedf135b95af3791eb5c21 (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 shutdown(void);
void update(void);
} // namespace chunk_mesher

#endif // CLIENT_CHUNK_MESHER_HH