Initial commit
This commit is contained in:
27
Include/ZRendererUtil/ZStaticMeshLoader.hpp
Normal file
27
Include/ZRendererUtil/ZStaticMeshLoader.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
ZStaticMeshLoader.h
|
||||
Author: Chris Ertel <crertel@762studios.com>
|
||||
|
||||
Purpose: File for loading ZStaticMeshes
|
||||
|
||||
Changelog
|
||||
2013/02/24 - Removed dependency on renderer.
|
||||
2011/09/25 - creation (crertel)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef _ZSTATICMESHLOADER_H
|
||||
#define _ZSTATICMESHLOADER_H
|
||||
|
||||
#include <ZUtil/ZSmartPointer.hpp>
|
||||
#define ZSM_CURRENT_VERSION (4)
|
||||
|
||||
class ZStaticMesh;
|
||||
class ZStaticMeshLoader
|
||||
{
|
||||
public:
|
||||
static ZPtr<ZStaticMesh> loadFromMemory(const void* _memory, size_t _sizeInMemory);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user