mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 09:47:58 +03:00
22 lines
368 B
C++
22 lines
368 B
C++
#pragma once
|
|
#include "framework.h"
|
|
|
|
struct POLYGON
|
|
{
|
|
int shape;
|
|
std::vector<int> indices;
|
|
std::vector<Vector2> textureCoordinates;
|
|
std::vector<Vector3> normals;
|
|
std::vector<Vector3> tangents;
|
|
std::vector<Vector3> bitangents;
|
|
};
|
|
|
|
struct BUCKET
|
|
{
|
|
int texture;
|
|
byte blendMode;
|
|
bool animated;
|
|
int numQuads;
|
|
int numTriangles;
|
|
std::vector<POLYGON> polygons;
|
|
};
|