Danbias/Code/OysterGraphics/Model/Model.h

22 lines
230 B
C
Raw Normal View History

#pragma once
#ifndef Mesh_h
#define Mesh_h
namespace Oyster
{
2013-11-20 10:22:01 +01:00
namespace Graphics
{
namespace Model
{
2013-11-20 10:22:01 +01:00
struct Model
{
void* info;
Oyster::Math::Float4x4 WorldMatrix;
2013-11-20 10:22:01 +01:00
bool Visible;
};
}
};
};
#endif