mirror of
https://github.com/Relintai/sfw.git
synced 2025-01-17 14:47:18 +01:00
12 lines
140 B
C
12 lines
140 B
C
|
#ifndef MESH_UTILS_H
|
||
|
#define MESH_UTILS_H
|
||
|
|
||
|
#include "mesh.h"
|
||
|
|
||
|
class MeshUtils {
|
||
|
public:
|
||
|
static void create_cone(Mesh *mesh);
|
||
|
};
|
||
|
|
||
|
#endif
|