From 5cd1296505752813f40bb22f3a5edc5ae89bb9aa Mon Sep 17 00:00:00 2001 From: Sryder Date: Sun, 22 Mar 2020 00:16:32 +0000 Subject: [PATCH] Include license/copyright headers on new files. --- src/k_bheap.c | 12 ++++++++++++ src/k_bheap.h | 12 ++++++++++++ src/k_pathfind.c | 12 ++++++++++++ src/k_pathfind.h | 12 ++++++++++++ src/k_waypoint.c | 13 +++++++++++++ src/k_waypoint.h | 13 +++++++++++++ 6 files changed, 74 insertions(+) diff --git a/src/k_bheap.c b/src/k_bheap.c index cf6848f68..777a62e84 100644 --- a/src/k_bheap.c +++ b/src/k_bheap.c @@ -1,3 +1,15 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_bheap.c +/// \brief Binary Heap implementation for SRB2 code base. + #include "k_bheap.h" #include "z_zone.h" diff --git a/src/k_bheap.h b/src/k_bheap.h index f1c6d2d5c..04e37492c 100644 --- a/src/k_bheap.h +++ b/src/k_bheap.h @@ -1,3 +1,15 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_bheap.h +/// \brief Binary Heap implementation for SRB2 code base. + #ifndef __K_BHEAP__ #define __K_BHEAP__ diff --git a/src/k_pathfind.c b/src/k_pathfind.c index 563456de1..8cccd1e81 100644 --- a/src/k_pathfind.c +++ b/src/k_pathfind.c @@ -1,3 +1,15 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_pathfind.c +/// \brief A* Pathfinding algorithm implementation for SRB2 code base. + #include "k_pathfind.h" #include "doomdef.h" diff --git a/src/k_pathfind.h b/src/k_pathfind.h index dac23373c..ba0e38f47 100644 --- a/src/k_pathfind.h +++ b/src/k_pathfind.h @@ -1,3 +1,15 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_pathfind.h +/// \brief A* Pathfinding algorithm implementation for SRB2 code base. + #ifndef __K_PATHFIND__ #define __K_PATHFIND__ diff --git a/src/k_waypoint.c b/src/k_waypoint.c index fc5aa4590..f77e6d62f 100644 --- a/src/k_waypoint.c +++ b/src/k_waypoint.c @@ -1,3 +1,16 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_waypoint.c +/// \brief Waypoint handling from the relevant mobjs +/// Setup and interfacing with waypoints for the main game + #include "k_waypoint.h" #include "d_netcmd.h" diff --git a/src/k_waypoint.h b/src/k_waypoint.h index 058ff6882..fb8d37f20 100644 --- a/src/k_waypoint.h +++ b/src/k_waypoint.h @@ -1,3 +1,16 @@ +// SONIC ROBO BLAST 2 KART +//----------------------------------------------------------------------------- +// Copyright (C) 2018-2020 by Sean "Sryder" Ryder +// Copyright (C) 2018-2020 by Kart Krew +// +// This program is free software distributed under the +// terms of the GNU General Public License, version 2. +// See the 'LICENSE' file for more details. +//----------------------------------------------------------------------------- +/// \file k_waypoint.h +/// \brief Waypoint handling from the relevant mobjs +/// Setup and interfacing with waypoints for the main game + #ifndef __K_WAYPOINT__ #define __K_WAYPOINT__