mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-22 13:33:35 +00:00
13 lines
161 B
C++
13 lines
161 B
C++
#include "Core.h"
|
|
|
|
namespace dECS {
|
|
class Iter {
|
|
public:
|
|
[[nodiscard]]
|
|
bool Next();
|
|
|
|
private:
|
|
WeakWorldPtr m_World;
|
|
};
|
|
}
|