mirror of
https://github.com/open-goal/jak-project
synced 2026-08-13 04:10:18 -04:00
083202929c
* begin work * work * working objs * exporting * it works * before some time of day fixes * add time of day interp and also fix zbuffer * some small blending fixes * improve randomess * clean up extraction and missing blend mode * culling, time of day, more level fixes * more cleanup * cleanup memory usage * windows fix
12 lines
228 B
C++
12 lines
228 B
C++
#pragma once
|
|
|
|
#include "common/custom_data/Tfrag3Data.h"
|
|
|
|
class Loader {
|
|
public:
|
|
tfrag3::Level* get_tfrag3_level(const std::string& level_name);
|
|
|
|
private:
|
|
std::unordered_map<std::string, tfrag3::Level> m_tfrag3_levels;
|
|
};
|