mirror of
https://github.com/encounter/aurora.git
synced 2026-07-09 18:19:33 -07:00
13 lines
221 B
C++
13 lines
221 B
C++
#pragma once
|
|
|
|
#include <aurora/rmlui.hpp>
|
|
|
|
#include <optional>
|
|
#include <string_view>
|
|
|
|
namespace aurora::rmlui {
|
|
|
|
std::optional<RuntimeTexture> load_runtime_texture(std::string_view source);
|
|
|
|
} // namespace aurora::rmlui
|