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
#define PTF_BALL_HPP
#ifndef __PTF_BALL_HPP__
#define __PTF_BALL_HPP__
#include <SFML/Graphics.hpp>
#include <iostream>

View File

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

View File

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

View File

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

View File

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

View File

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