Boss-related files: Adjust/add top-of-file copyright info

This commit is contained in:
toaster 2023-10-30 00:11:57 +00:00
parent d9d137be77
commit c3380b8f5d
3 changed files with 19 additions and 2 deletions

View file

@ -1,4 +1,4 @@
// SONIC ROBO BLAST 2 KART
// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) 2018-2023 by Vivian "toastergrl" Grannell
// Copyright (C) 2018-2023 by Kart Krew

View file

@ -1,4 +1,4 @@
// SONIC ROBO BLAST 2 KART
// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) 2018-2023 by Vivian "toastergrl" Grannell
// Copyright (C) 2018-2023 by Kart Krew
@ -136,6 +136,11 @@ mobj_t *VS_GetArena(INT32 bossindex);
fixed_t *VS_PredictAroundArena(mobj_t *arena, mobj_t *movingobject, fixed_t magnitude, angle_t mompoint, fixed_t radiussubtract, boolean forcegoaround, fixed_t radiusdeltafactor);
fixed_t *VS_RandomPointOnArena(mobj_t *arena, fixed_t radiussubtract);
// Blend Eye
boolean VS_PuyoTouched(mobj_t *special, mobj_t *toucher);
void VS_PuyoDeath(mobj_t *mobj);
#ifdef __cplusplus
} // extern "C"
#endif

View file

@ -1,3 +1,15 @@
// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) 2022-2023 by Vivian "toastergrl" Grannell
// Copyright (C) 2022-2023 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 arena.c
/// \brief Boss battle arena logic
#include "../../p_local.h"
#include "../../p_setup.h"
#include "../../m_random.h"