reflex2q3/ReflexToQ3/worldspawn.h
2015-02-02 15:41:03 +13:00

34 lines
447 B
C++

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