DarkflameServer/dECS/Iter.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
161 B
C
Raw Permalink Normal View History

2024-12-18 04:06:41 +00:00
#include "Core.h"
namespace dECS {
class Iter {
public:
[[nodiscard]]
bool Next();
private:
WeakWorldPtr m_World;
};
}