From 52ce550ba631d9cff071351133d7cf05a4fc5924 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 20 Oct 2022 13:52:48 +0200 Subject: [PATCH] =?UTF-8?q?A=C3=B1adido=20#pragma=20once?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- background.h | 2 ++ balloon.h | 2 ++ bullet.h | 2 ++ const.h | 2 ++ gamedirector.h | 2 ++ globals.h | 2 ++ ltexture.h | 2 ++ menu.h | 2 ++ player.h | 2 ++ sprite.h | 2 ++ spriteanimated.h | 2 ++ struct.h | 2 ++ text.h | 2 ++ 13 files changed, 26 insertions(+) diff --git a/background.h b/background.h index 3bcedbb..951a0ea 100644 --- a/background.h +++ b/background.h @@ -1,3 +1,5 @@ +#pragma once + #include "sprite.h" #ifndef BACKGROUND_H diff --git a/balloon.h b/balloon.h index 78741b2..e893f20 100644 --- a/balloon.h +++ b/balloon.h @@ -1,3 +1,5 @@ +#pragma once + #include "struct.h" #include "sprite.h" diff --git a/bullet.h b/bullet.h index 63e6259..d6f5fec 100644 --- a/bullet.h +++ b/bullet.h @@ -1,3 +1,5 @@ +#pragma once + #include "struct.h" #include "sprite.h" diff --git a/const.h b/const.h index ce2757e..33eee30 100644 --- a/const.h +++ b/const.h @@ -1,3 +1,5 @@ +#pragma once + #include #ifndef CONST_H diff --git a/gamedirector.h b/gamedirector.h index af6916d..116fc4e 100644 --- a/gamedirector.h +++ b/gamedirector.h @@ -1,3 +1,5 @@ +#pragma once + #include "player.h" #include "balloon.h" #include "bullet.h" diff --git a/globals.h b/globals.h index 22d1b48..f0ced3e 100644 --- a/globals.h +++ b/globals.h @@ -1,3 +1,5 @@ +#pragma once + #include #include #include diff --git a/ltexture.h b/ltexture.h index 3473443..eb8ce0c 100644 --- a/ltexture.h +++ b/ltexture.h @@ -1,3 +1,5 @@ +#pragma once + #include #include #include diff --git a/menu.h b/menu.h index 45fc6a0..a98af25 100644 --- a/menu.h +++ b/menu.h @@ -1,3 +1,5 @@ +#pragma once + #include "sprite.h" #ifndef MENU_H diff --git a/player.h b/player.h index d372c9a..a21d7f7 100644 --- a/player.h +++ b/player.h @@ -1,3 +1,5 @@ +#pragma once + #include "struct.h" #include "spriteanimated.h" diff --git a/sprite.h b/sprite.h index 87a4232..d6eafcc 100644 --- a/sprite.h +++ b/sprite.h @@ -1,3 +1,5 @@ +#pragma once + #include #include #include "ltexture.h" diff --git a/spriteanimated.h b/spriteanimated.h index 5840c08..9189d5b 100644 --- a/spriteanimated.h +++ b/spriteanimated.h @@ -1,3 +1,5 @@ +#pragma once + #include #include #include "sprite.h" diff --git a/struct.h b/struct.h index 3ae9fff..72c5f61 100644 --- a/struct.h +++ b/struct.h @@ -1,3 +1,5 @@ +#pragma once + #ifndef STRUCT_H #define STRUCT_H diff --git a/text.h b/text.h index 0f56af8..4c536f9 100644 --- a/text.h +++ b/text.h @@ -1,3 +1,5 @@ +#pragma once + #include "sprite.h" #ifndef TEXT_H