diff options
Diffstat (limited to 'source/LoG/art')
-rw-r--r-- | source/LoG/art/block.cpp | 0 | ||||
-rw-r--r-- | source/LoG/art/block.h | 22 | ||||
-rw-r--r-- | source/LoG/art/lod.cpp | 0 | ||||
-rw-r--r-- | source/LoG/art/lod.h | 0 | ||||
-rw-r--r-- | source/LoG/art/mesh.cpp | 14 | ||||
-rw-r--r-- | source/LoG/art/mesh.h | 18 | ||||
-rw-r--r-- | source/LoG/art/voxel.cpp | 0 | ||||
-rw-r--r-- | source/LoG/art/voxel.h | 12 |
8 files changed, 66 insertions, 0 deletions
diff --git a/source/LoG/art/block.cpp b/source/LoG/art/block.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/LoG/art/block.cpp 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 --- /dev/null +++ b/source/LoG/art/lod.cpp diff --git a/source/LoG/art/lod.h b/source/LoG/art/lod.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/LoG/art/lod.h 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 --- /dev/null +++ b/source/LoG/art/voxel.cpp 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 |