This commit is contained in:
Antoine Bartuccio 2016-12-28 23:26:58 +01:00
parent bededa78c2
commit 3e38f819f8
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @Author: klmp200 * @Author: klmp200
* @Date: 2016-12-27 19:59:21 * @Date: 2016-12-27 19:59:21
* @Last Modified by: klmp200 * @Last Modified by: klmp200
* @Last Modified time: 2016-12-28 21:36:39 * @Last Modified time: 2016-12-28 23:26:39
*/ */
#include <stdio.h> #include <stdio.h>
@ -10,7 +10,7 @@
#include <SDL2/SDL.h> #include <SDL2/SDL.h>
#include <pixel.h> #include <pixel.h>
#include <matrix.h> #include <matrix.h>
#include <cellElement.h> #include <CellElement.h>
void SetPixel(SDL_Renderer *renderer, int x, int y, bool value){ void SetPixel(SDL_Renderer *renderer, int x, int y, bool value){

View File

@ -2,7 +2,7 @@
#define PIXEL_H_INCLUDED #define PIXEL_H_INCLUDED
#include <SDL2/SDL.h> #include <SDL2/SDL.h>
#include <cellElement.h> #include <CellElement.h>
#include <matrix.h> #include <matrix.h>
typedef struct { typedef struct {