Comment on page
Quick'start
on this page you will find a quick example that you can copy paste to have a functional world
Here is the file below:
quick_start.cpp
#include <shiva/world/world.hpp>
namespace my_game::systems
{
class bar : public shiva::ecs::pre_update_system<bar>
{
public:
bar(shiva::entt::dispatcher &dispatcher, shiva::entt::entity_registry ®istry,
const float &fixed_delta_time) :
system(dispatcher, registry, fixed_delta_time)
{
}