From 02e8b560fa99d539f453aa99a454a089b077c014 Mon Sep 17 00:00:00 2001 From: Allanis <allanis@saracraft.net> Date: Fri, 12 Jul 2013 17:45:24 +0100 Subject: [PATCH] [Fix] Forgot to give prototype for noise_generateNebulae(). --- src/perlin.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/perlin.h b/src/perlin.h index 780d6f0..8ccd0c1 100644 --- a/src/perlin.h +++ b/src/perlin.h @@ -1,5 +1,6 @@ #pragma once #include "opengl.h" +void noise_generateNebulae(const int w, const int h); glTexture* noise_genCloud(const int w, const int h, double rug);