mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
namespace MiniEngine {
|
|
class NonMoveable
|
|
{
|
|
public:
|
|
NonMoveable()=default;
|
|
~NonMoveable()=default;
|
|
NonMoveable(NonMoveable&&) =delete;
|
|
NonMoveable& operator = (NonMoveable&&)=delete;
|
|
};
|
|
} /// End of namespace MiniEngine
|