mirror of
https://github.com/Relintai/voxelman.git
synced 2025-01-14 15:11:10 +01:00
19 lines
301 B
C
19 lines
301 B
C
|
#ifndef MESH_SIMPLIFIER_H
|
||
|
#define MESH_SIMPLIFIER_H
|
||
|
|
||
|
#include "core/reference.h"
|
||
|
|
||
|
#include "core/pool_vector.h"
|
||
|
#include "core/resource.h"
|
||
|
|
||
|
class MeshSimplifier : public Reference {
|
||
|
GDCLASS(MeshSimplifier, Reference);
|
||
|
|
||
|
public:
|
||
|
MeshSimplifier();
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods() {}
|
||
|
};
|
||
|
|
||
|
#endif
|