mirror of
https://github.com/enduro2d/enduro2d.git
synced 2026-01-05 01:51:02 +07:00
20 lines
591 B
C++
20 lines
591 B
C++
/*******************************************************************************
|
|
* This file is part of the "Enduro2D"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2018 Matvey Cherevko
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../_high.hpp"
|
|
|
|
#include "../library.hpp"
|
|
|
|
namespace e2d
|
|
{
|
|
class texture_asset final : public content_asset<texture_asset, texture_ptr> {
|
|
public:
|
|
static load_async_result load_async(const library& library, str_view address);
|
|
};
|
|
}
|