Files
Collage/include/types/textureInfo.h
2024-05-06 08:23:01 -04:00

8 lines
161 B
C++

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