19 lines
255 B
C
19 lines
255 B
C
/**
|
|
* \addtogroup squares
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file squares.h
|
|
* @brief Moves layers of translucent checker boards over each other.
|
|
* @author Christian Kroll
|
|
*/
|
|
|
|
#ifndef SQUARES_H_
|
|
#define SQUARES_H_
|
|
|
|
void squares(void);
|
|
|
|
#endif /* SQUARES_H_ */
|
|
|
|
/*@}*/
|