mirror of
https://github.com/open-goal/jak-project
synced 2026-05-28 08:25:56 -04:00
c7c615a043
Co-authored-by: water <awaterford111445@gmail.com>
12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include "common/custom_data/Tfrag3Data.h"
|
|
|
|
struct TexturePool {
|
|
std::unordered_map<std::string, int> textures_by_name;
|
|
std::vector<tfrag3::Texture> textures_by_idx;
|
|
}; |