12 lines
307 B
C++
12 lines
307 B
C++
#pragma once
|
|
|
|
#include <motor/basic/scene.hpp>
|
|
#include "ai_world.hpp"
|
|
#include "physics.hpp"
|
|
|
|
struct World {
|
|
std::shared_ptr<motor::Scene> scene = std::make_shared<motor::Scene>();
|
|
std::shared_ptr<motor::Scene> hud = std::make_shared<motor::Scene>();
|
|
motor::AIWorld ai{};
|
|
motor::Physics physics{};
|
|
};
|