mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-09 04:30:49 -04:00
18 lines
383 B
C++
18 lines
383 B
C++
#ifndef DUSK_TEXTURE_REPLACEMENTS_HPP
|
|
#define DUSK_TEXTURE_REPLACEMENTS_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace dusk::texture_replacements {
|
|
|
|
// Mod replacements are prioritized *over* user replacements (<data folder>/texture_replacements/)
|
|
inline constexpr int32_t kUserTextureReplacementPriority = -1'000'000;
|
|
|
|
void reload();
|
|
void set_enabled(bool enabled);
|
|
void shutdown();
|
|
|
|
}
|
|
|
|
#endif
|