Files
libsst/Include/ZRendererUtil/ZStaticMeshLoader.hpp
2026-04-03 00:22:39 -05:00

27 lines
496 B
C++

/*
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