Nouveaux include guards

This commit is contained in:
Mattéo Delabre 2016-03-08 23:28:50 +01:00
parent ac12e1ab66
commit 8198498e81
6 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
#ifndef PTF_BALL_HPP #ifndef __PTF_BALL_HPP__
#define PTF_BALL_HPP #define __PTF_BALL_HPP__
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>
#include <iostream> #include <iostream>

View File

@ -1,5 +1,5 @@
#ifndef PTF_BLOCK_HPP #ifndef __PTF_BLOCK_HPP__
#define PTF_BLOCK_HPP #define __PTF_BLOCK_HPP__
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>
#include <iostream> #include <iostream>

View File

@ -1,5 +1,5 @@
#ifndef PTF_ENGINE_HPP #ifndef __PTF_ENGINE_HPP__
#define PTF_ENGINE_HPP #define __PTF_ENGINE_HPP__
#include <vector> #include <vector>
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>

View File

@ -1,5 +1,5 @@
#ifndef PTF_OBJECT_HPP #ifndef __PTF_OBJECT_HPP__
#define PTF_OBJECT_HPP #define __PTF_OBJECT_HPP__
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>
#include <iostream> #include <iostream>

View File

@ -1,5 +1,5 @@
#ifndef PTF_OBJECT_HPP #ifndef __PTF_PHYSICS_OBJECT_HPP__
#define PTF_OBJECT_HPP #define __PTF_PHYSICS_OBJECT_HPP__
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>
#include <iostream> #include <iostream>

View File

@ -1,5 +1,5 @@
#ifndef PTF_STATE_HPP #ifndef __PTF_STATE_HPP__
#define PTF_STATE_HPP #define __PTF_STATE_HPP__
#include <vector> #include <vector>