mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
20 lines
276 B
C
20 lines
276 B
C
#ifndef _R3DDATA_H_
|
|
#define _R3DDATA_H_
|
|
|
|
struct LOD
|
|
{
|
|
float startRange; // possibly specified as angles also, yeah who knows >_<
|
|
float deleteRange;
|
|
};
|
|
|
|
struct LODFeatureType
|
|
{
|
|
LOD lod[4];
|
|
};
|
|
|
|
struct LODBlendTable
|
|
{
|
|
LODFeatureType table[128];
|
|
};
|
|
|
|
#endif |