Initial commit

This commit is contained in:
2026-04-03 00:22:39 -05:00
commit eca1e8c458
945 changed files with 218160 additions and 0 deletions

View 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