From 9645be0af1b1d5cb0ad5892d5464e1b23c51b550 Mon Sep 17 00:00:00 2001 From: chai Date: Sat, 11 May 2019 22:54:56 +0800 Subject: *init --- source/LoG/art/block.cpp | 0 source/LoG/art/block.h | 22 ++++++++++++++++++++++ source/LoG/art/lod.cpp | 0 source/LoG/art/lod.h | 0 source/LoG/art/mesh.cpp | 14 ++++++++++++++ source/LoG/art/mesh.h | 18 ++++++++++++++++++ source/LoG/art/voxel.cpp | 0 source/LoG/art/voxel.h | 12 ++++++++++++ 8 files changed, 66 insertions(+) create mode 100644 source/LoG/art/block.cpp create mode 100644 source/LoG/art/block.h create mode 100644 source/LoG/art/lod.cpp create mode 100644 source/LoG/art/lod.h create mode 100644 source/LoG/art/mesh.cpp create mode 100644 source/LoG/art/mesh.h create mode 100644 source/LoG/art/voxel.cpp create mode 100644 source/LoG/art/voxel.h (limited to 'source/LoG/art') diff --git a/source/LoG/art/block.cpp b/source/LoG/art/block.cpp new file mode 100644 index 0000000..e69de29 diff --git a/source/LoG/art/block.h b/source/LoG/art/block.h new file mode 100644 index 0000000..b081fff --- /dev/null +++ b/source/LoG/art/block.h @@ -0,0 +1,22 @@ +#ifndef __LOG_BLOCK_H__ +#define __LOG_BLOCK_H__ + +namespace Art +{ + + class Block + { + public: + + Block(); + ~Block(); + + private: + + float mMoveSpeed; + + }; + +} + +#endif \ No newline at end of file diff --git a/source/LoG/art/lod.cpp b/source/LoG/art/lod.cpp new file mode 100644 index 0000000..e69de29 diff --git a/source/LoG/art/lod.h b/source/LoG/art/lod.h new file mode 100644 index 0000000..e69de29 diff --git a/source/LoG/art/mesh.cpp b/source/LoG/art/mesh.cpp new file mode 100644 index 0000000..92111a1 --- /dev/null +++ b/source/LoG/art/mesh.cpp @@ -0,0 +1,14 @@ +#include "mesh.h" + +namespace Art +{ + + Mesh::Mesh() + { + } + + Mesh::~Mesh() + { + } + +} \ No newline at end of file diff --git a/source/LoG/art/mesh.h b/source/LoG/art/mesh.h new file mode 100644 index 0000000..13aeaed --- /dev/null +++ b/source/LoG/art/mesh.h @@ -0,0 +1,18 @@ +#ifndef __LOG_MESH_H__ +#define __LOG_MESH_H__ + +namespace Art +{ + + class Mesh + { + public: + + Mesh(); + ~Mesh(); + + }; + +} + +#endif \ No newline at end of file diff --git a/source/LoG/art/voxel.cpp b/source/LoG/art/voxel.cpp new file mode 100644 index 0000000..e69de29 diff --git a/source/LoG/art/voxel.h b/source/LoG/art/voxel.h new file mode 100644 index 0000000..9e8a24d --- /dev/null +++ b/source/LoG/art/voxel.h @@ -0,0 +1,12 @@ +#ifndef __LOG_VOXEL_H__ +#define __LOG_VOXEL_H__ + +/// +/// voxelÄ£ÐÍ +/// +class Voxel +{ + +}; + +#endif \ No newline at end of file -- cgit v1.1-26-g67d0