blob: c5236b2d379aa0223f9d22d82565c2621ce8cbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef RULES_H
#define RULES_H
#include <cetris.h>
extern cetris_config tetris_ds_config;
bool twenty_line_sprint(cetris_game *g);
bool forty_line_sprint(cetris_game *g);
#endif /* RULES_H */
|