mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-12-27 20:41:49 +00:00
ObjLoading/ObjWriting: Initial skeleton for loading and writing obj files
This commit is contained in:
13
src/ObjLoading/IObjLoader.h
Normal file
13
src/ObjLoading/IObjLoader.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "Zone/Zone.h"
|
||||
|
||||
class IObjLoader
|
||||
{
|
||||
public:
|
||||
virtual ~IObjLoader() = default;
|
||||
|
||||
virtual bool SupportsZone(Zone* zone) = 0;
|
||||
virtual void LoadReferencedContainersForZone(Zone* zone) = 0;
|
||||
virtual void LoadObjDataForZone(Zone* zone) = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user