Files
Seele/src/Engine/System/Executor.h
T

14 lines
208 B
C++
Raw Normal View History

#pragma once
#include "MinimalEngine.h"
#include "SystemBase.h"
2024-06-09 12:20:04 +02:00
namespace Seele {
namespace System {
class Executor {
public:
Executor();
~Executor();
};
} // namespace System
} // namespace Seele