borgware-2d/games/breakout/common.h

13 lines
257 B
C

#ifndef COMMON_H
#define COMMON_H
#include <stdint.h>
#include "../../config.h"
#include "../../random/prng.h"
#include "../../pixel.h"
#include "config.h"
#include "playfield.h"
#include "ball.h"
#include "score.h"
#include "level.h"
#endif /* COMMON_H */