Files
Collage/include/types/textureInfo.h
2024-05-05 10:46:01 -04:00

8 lines
161 B
C++

#pragma once
#include <vector>
#include <J3ML/LinearAlgebra.h>
struct TextureInformation {
std::string name;
std::vector<Vector2> textureCoordinates;
};