Files
enduro2d/headers/enduro2d/high/assets/spine_asset.hpp
2020-03-25 01:53:24 +07:00

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);
};
}