Danbias/Code/OysterGraphics/Model/Model.h

28 lines
280 B
C++

#pragma once
#ifndef Mesh_h
#define Mesh_h
#include "ModelInfo.h"
namespace Oyster
{
namespace Graphics
{
namespace Render
{
struct Model
{
void* const info;
//ModelInfo* info;
void* data;
int size;
bool Visible;
};
}
};
};
#endif