14 lines
208 B
C++
14 lines
208 B
C++
#pragma once
|
|
#include "MinimalEngine.h"
|
|
#include "SystemBase.h"
|
|
|
|
namespace Seele {
|
|
namespace System {
|
|
class Executor {
|
|
public:
|
|
Executor();
|
|
~Executor();
|
|
};
|
|
} // namespace System
|
|
} // namespace Seele
|