10 lines
132 B
C
10 lines
132 B
C
|
#pragma once
|
||
|
|
||
|
#include <json.hpp>
|
||
|
|
||
|
#include "ecs.h"
|
||
|
|
||
|
struct World;
|
||
|
|
||
|
EntityID parseEntity(const nlohmann::json& json, World* world);
|