Files
enduro2d/headers/enduro2d/high/components/disabled.hpp
2019-10-30 00:04:00 +07:00

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