cleaned up include directives
This commit is contained in:
parent
a528246e33
commit
53fbefd70a
|
@ -1,6 +1,8 @@
|
|||
#ifndef BEARING_H_
|
||||
#define BEARING_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
enum tetris_bearing
|
||||
{
|
||||
TETRIS_BEARING_0,
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
#define BUCKET_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include <limits.h>
|
||||
#include "../../config.h"
|
||||
#include "piece.h"
|
||||
|
|
|
@ -4,9 +4,7 @@
|
|||
#include <assert.h>
|
||||
#include "../../compat/pgmspace.h"
|
||||
#include "../../joystick/joystick.h"
|
||||
#include "../../scrolltext/scrolltext.h"
|
||||
#include "../../util.h"
|
||||
#include "../../config.h"
|
||||
#include "bearing.h"
|
||||
#include "input.h"
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
#define INPUT_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include "bearing.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define TETRIS_PIECE_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
/**
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define VARIANT_FP_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include "bearing.h"
|
||||
#include "highscore.h"
|
||||
#include "variants.h"
|
||||
#include "input.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define VARIANT_STD_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include "../../config.h"
|
||||
#include "piece.h"
|
||||
#include "bearing.h"
|
||||
#include "input.h"
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include <stdint.h>
|
||||
#include "bearing.h"
|
||||
#include "piece.h"
|
||||
#include "bucket.h"
|
||||
#include "variants.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue