mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Make sure all source files in qflight have (C) headers.
This commit is contained in:
parent
4d0a08a052
commit
b025e7ba9a
5 changed files with 93 additions and 6 deletions
|
@ -1,3 +1,32 @@
|
||||||
|
/*
|
||||||
|
noise.h
|
||||||
|
|
||||||
|
3d noise functions.
|
||||||
|
|
||||||
|
Copyright (C) 2000 Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
|
||||||
|
|
||||||
|
Author: Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
|
||||||
|
Date: 2000/11/23
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to:
|
||||||
|
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
59 Temple Place - Suite 330
|
||||||
|
Boston, MA 02111-1307, USA
|
||||||
|
|
||||||
|
*/
|
||||||
float noise3d (vec3_t v, int num);
|
float noise3d (vec3_t v, int num);
|
||||||
float noiseXYZ (float x, float y, float z, int num);
|
float noiseXYZ (float x, float y, float z, int num);
|
||||||
float noise_scaled (vec3_t v, float s, int num);
|
float noise_scaled (vec3_t v, float s, int num);
|
||||||
|
|
|
@ -1,3 +1,32 @@
|
||||||
|
/*
|
||||||
|
properties.c
|
||||||
|
|
||||||
|
Light properties handling.
|
||||||
|
|
||||||
|
Copyright (C) 2004 Bill Currie <bill@taniwha.org>
|
||||||
|
|
||||||
|
Author: Bill Currie <bill@taniwha.org>
|
||||||
|
Date: 2004/01/27
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to:
|
||||||
|
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
59 Temple Place - Suite 330
|
||||||
|
Boston, MA 02111-1307, USA
|
||||||
|
|
||||||
|
*/
|
||||||
float parse_float (const char *str);
|
float parse_float (const char *str);
|
||||||
void parse_color (const char *str, vec3_t color);
|
void parse_color (const char *str, vec3_t color);
|
||||||
float parse_light (const char *str, vec3_t color);
|
float parse_light (const char *str, vec3_t color);
|
||||||
|
|
|
@ -1,3 +1,32 @@
|
||||||
|
/*
|
||||||
|
noise.c
|
||||||
|
|
||||||
|
3d noise functions.
|
||||||
|
|
||||||
|
Copyright (C) 2000 Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
|
||||||
|
|
||||||
|
Author: Seth Galbraith <sgalbrai@linknet.kitsap.lib.wa.us>
|
||||||
|
Date: 2000/11/23
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to:
|
||||||
|
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
59 Temple Place - Suite 330
|
||||||
|
Boston, MA 02111-1307, USA
|
||||||
|
|
||||||
|
*/
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
/*
|
/*
|
||||||
#FILENAME#
|
properties.c
|
||||||
|
|
||||||
#DESCRIPTION#
|
Light properties handling.
|
||||||
|
|
||||||
Copyright (C) 2004 #AUTHOR#
|
Copyright (C) 2004 Bill Currie <bill@taniwha.org>
|
||||||
|
|
||||||
Author: #AUTHOR#
|
Author: Bill Currie <bill@taniwha.org>
|
||||||
Date: #DATE#
|
Date: 2004/01/27
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
This program is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU General Public License
|
modify it under the terms of the GNU General Public License
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
trace.c
|
qflight.c
|
||||||
|
|
||||||
(description)
|
(description)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue