mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-29 02:31:20 +00:00
14 lines
197 B
C++
14 lines
197 B
C++
#ifndef SMODELDATA_H
|
|
#define SMODELDATA_H
|
|
|
|
#include "SSurface.h"
|
|
#include <Common/CAABox.h>
|
|
|
|
struct SModelData
|
|
{
|
|
CAABox mAABox;
|
|
std::vector<SSurface*> mSurfaces;
|
|
};
|
|
|
|
#endif // SMODELDATA_H
|