move import at the top
This commit is contained in:
parent
f44561c3dc
commit
5600ddcd9d
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
#ifndef OTHELLO_PLATEAU_H
|
||||
#define OTHELLO_PLATEAU_H 1
|
||||
|
||||
#include <GL4D/gl4dp.h>
|
||||
#include <GL4D/gl4du.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <GL4D/gl4dp.h>
|
||||
#include <GL4D/gl4du.h>
|
||||
|
||||
// Position d'un point x, y
|
||||
struct pos {
|
||||
GLuint x, y;
|
||||
|
|
Reference in a new issue