mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-03 05:32:54 +00:00
Boss-related files: Adjust/add top-of-file copyright info
This commit is contained in:
parent
d9d137be77
commit
c3380b8f5d
3 changed files with 19 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue