From 21c844a925df1b325cf39d66e65a4373eea7ee30 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Mon, 8 Aug 2022 19:59:25 +0200 Subject: [PATCH] =?UTF-8?q?modificado=20director.h.=20El=20m=C3=A9todo=20i?= =?UTF-8?q?nit=20se=20ha=20hecho=20privado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/director.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/director.h b/source/director.h index aa5dd96..e3e963c 100644 --- a/source/director.h +++ b/source/director.h @@ -36,6 +36,9 @@ private: std::string mExecutablePath; // Path del ejecutable section_t mSection; // Sección y subsección actual del programa; + // Inicia las variables necesarias para arrancar el programa + void init(Uint8 name); + // Inicializa jail_audio void initJailAudio(); @@ -88,9 +91,6 @@ public: // Destructor ~Director(); - // Inicia las variables necesarias para arrancar el programa - void init(Uint8 name); - // Bucle principal void run(); };