Create a test for the ECS before we add more functionality.

This commit is contained in:
Zed A. Shaw 2024-10-29 16:04:40 -04:00
parent 143fe7784c
commit ea6cf1362b
4 changed files with 13 additions and 6 deletions

View file

@ -80,5 +80,17 @@ namespace DinkyECS {
}
}
}
/*
template<typename Comp>
void send(int event, std::any data) {
}
template<typename Comp>
std::tuple<int, std::any data> recv() {
}
*/
};
}