Explorar el Código

Fixed forgetting a type

Florian DORMONT hace 10 años
padre
commit
aa07029c39
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      include/Tileset.h

+ 1 - 1
include/Tileset.h

@@ -14,7 +14,7 @@ namespace WalrusRPG
 
       public:
         Tileset(char *sheet, unsigned sheet_width, unsigned sheet_height, unsigned tile_width, unsigned tile_heihgt);
-        render_tile(unsigned int index, unsigned x, unsigned y) const;
+        void render_tile(unsigned int index, unsigned x, unsigned y) const;
     };
 }