diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-06-09 22:58:20 +0200 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-06-09 22:59:32 +0200 |
commit | 947af225e80e48c46ef83f0b7cdb1e1274ba96dd (patch) | |
tree | ebc235563cfb223d0fa7100eb5c8b4d760fdf281 /src/yabs_core.cpp | |
parent | structure, namespaces, cool stuff overall (diff) | |
download | yabs-947af225e80e48c46ef83f0b7cdb1e1274ba96dd.tar.gz yabs-947af225e80e48c46ef83f0b7cdb1e1274ba96dd.tar.bz2 yabs-947af225e80e48c46ef83f0b7cdb1e1274ba96dd.tar.xz yabs-947af225e80e48c46ef83f0b7cdb1e1274ba96dd.tar.zst yabs-947af225e80e48c46ef83f0b7cdb1e1274ba96dd.zip |
make everything better
Diffstat (limited to 'src/yabs_core.cpp')
-rw-r--r-- | src/yabs_core.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/yabs_core.cpp b/src/yabs_core.cpp new file mode 100644 index 0000000..6252b14 --- /dev/null +++ b/src/yabs_core.cpp @@ -0,0 +1,23 @@ +/*********************************/ +/* YABS ( // */ +/* main ( )/ */ +/* by salade )(/ */ +/* ________________ ( /) */ +/* ()__)____________))))) :^} */ +/*********************************/ + +#include "yabs_core.h" + +namespace yabs { +namespace core { + +int reset_camera(Scene3D const& scene_3d) { + return (0); +} + +int draw(gameState const& game_state) { + return (0); +} + +} // namespace core +} // namespace yabs |