R-Type  2
Doom but in better
Loading...
Searching...
No Matches
CollisionSystem.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <unordered_map>
4#include <functional>
5
6#include "Registry.hpp"
7#include "Position.hpp"
8#include "Collider.hpp"
9#include "Type.hpp"
10
void collision_system(Registry &r, ComponentContainer< Position > &positions, ComponentContainer< Collider > &colliders, ComponentContainer< Type > &types)
Collision detection and resolution system.
Registry * r
Definition Tests.cpp:4
Manages a collection of components associated with entities in an ECS (Entity-Component-System) archi...
Manages entities and their associated components, enabling the creation, deletion,...
Definition Registry.hpp:23