#pragma once #ifndef MODELINFO_h #define MODELINFO_h #include "..\Core\Core.h" namespace Oyster { namespace Graphics { namespace Model { struct ModelInfo { std::vector Material; Core::Buffer *Vertices,*Indecies; bool Indexed; int VertexCount; }; } } }; #endif