You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
539 B
18 lines
539 B
#pragma once
|
|
#include "components.hpp"
|
|
#include "levelmanager.hpp"
|
|
|
|
|
|
namespace System {
|
|
using namespace components;
|
|
|
|
void lighting(GameLevel &level);
|
|
void motion(GameLevel &level);
|
|
void collision(GameLevel &level);
|
|
void death(GameLevel &level);
|
|
void enemy_pathing(GameLevel &level);
|
|
|
|
void init_positions(DinkyECS::World &world, SpatialMap &collider);
|
|
void pickup(DinkyECS::World &world, DinkyECS::Entity actor, DinkyECS::Entity item);
|
|
void device(DinkyECS::World &world, DinkyECS::Entity actor, DinkyECS::Entity item);
|
|
}
|
|
|