8 lines
161 B
C++
8 lines
161 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <J3ML/LinearAlgebra.h>
|
|
|
|
struct TextureInformation {
|
|
std::string name;
|
|
std::vector<Vector2> textureCoordinates;
|
|
}; |