mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-16 22:16:53 +07:00
19 lines
511 B
C++
19 lines
511 B
C++
/*******************************************************************************
|
|
* This file is part of the "Enduro2D"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2018-2019, by Matvey Cherevko (blackmatov@gmail.com)
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../_high.hpp"
|
|
|
|
namespace e2d
|
|
{
|
|
template < typename T >
|
|
class disabled final {
|
|
public:
|
|
disabled() = default;
|
|
};
|
|
}
|