diff --git a/games/tetris/bast.c b/games/tetris/bast.c new file mode 100644 index 0000000..4eb1453 --- /dev/null +++ b/games/tetris/bast.c @@ -0,0 +1,6 @@ +#include "bast.h" + +int bla() +{ + return 0; +} diff --git a/games/tetris/bast.h b/games/tetris/bast.h new file mode 100644 index 0000000..4aabddc --- /dev/null +++ b/games/tetris/bast.h @@ -0,0 +1,6 @@ +#ifndef BAST_H_ +#define BAST_H_ + +int bla(); + +#endif /* BAST_H_ */