mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 00:11:55 +07:00
22 lines
721 B
C++
22 lines
721 B
C++
/*******************************************************************************
|
|
* This file is part of the "Enduro2D"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2018-2020, by Matvey Cherevko (blackmatov@gmail.com)
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../_high.hpp"
|
|
|
|
#include "../library.hpp"
|
|
#include "../resources/spine.hpp"
|
|
|
|
namespace e2d
|
|
{
|
|
class spine_asset final : public content_asset<spine_asset, spine> {
|
|
public:
|
|
static const char* type_name() noexcept { return "spine_asset"; }
|
|
static load_async_result load_async(const library& library, str_view address);
|
|
};
|
|
}
|