reflex2q3/ReflexToQ3/includes/worldspawn.h
2017-05-06 17:54:48 -07:00

37 lines
521 B
C++

//
// Author: Michael Cameron
// Email: chronokun@hotmail.com
//
#ifndef __WORLDSPAWN_H__
#define __WORLDSPAWN_H__
#include <vector>
#include <string>
#include <Eigen/Core>
struct TFace
{
float m_fXOffset;
float m_fYOffset;
float m_fXScale;
float m_fYScale;
float m_fRotation;
std::vector<int> m_Indices;
unsigned long hex;
std::string m_Material;
};
struct TBrush
{
std::vector<Eigen::Vector3f> m_Vertices;
std::vector<TFace> m_Faces;
};
struct TWorldSpawn
{
std::vector<TBrush> m_Brushes;
};
#endif