14 lines
223 B
C++
14 lines
223 B
C++
#pragma once
|
|
|
|
#include "generic/generic_3dtk_loader.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
|
|
struct uos_normal_loader : detail::generic_3dtk_loader<true, false, false>
|
|
{
|
|
static constexpr auto name = std::string_view("uos_normal");
|
|
};
|
|
|
|
}
|