Cogs.Core
GltfWriter.h
1#pragma once
2
3#include "Resources/Resources.h"
4#include <string>
5
7{
8 class Entity;
9}
10
11namespace Cogs::Core::GltfWriter
12{
13 bool COGSCORE_DLL_API writeGltf(std::vector<ComponentModel::Entity*>& entities, const std::string& filePath, const std::string& fileName);
14 bool COGSCORE_DLL_API writeGlb(std::vector<ComponentModel::Entity*>& entities, const std::string& filePath, const std::string& fileName);
15}
Contains code for composing and managing entities built from components.