From d871c6f8fdbdfb159c5035545b297ea6317f1225 Mon Sep 17 00:00:00 2001 From: Peter Covington Date: Tue, 19 Apr 2022 03:16:54 -0400 Subject: [PATCH] Add Mapbase file headers --- sp/src/game/client/mapbase/c_weapon_custom_hl2.cpp | 8 ++++++++ sp/src/game/server/mapbase/custom_weapon_factory.cpp | 8 ++++++++ sp/src/game/server/mapbase/custom_weapon_factory.h | 8 ++++++++ sp/src/game/server/mapbase/weapon_custom_hl2.cpp | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/sp/src/game/client/mapbase/c_weapon_custom_hl2.cpp b/sp/src/game/client/mapbase/c_weapon_custom_hl2.cpp index 9f97a12f..71675b06 100644 --- a/sp/src/game/client/mapbase/c_weapon_custom_hl2.cpp +++ b/sp/src/game/client/mapbase/c_weapon_custom_hl2.cpp @@ -1,3 +1,11 @@ +//========= Mapbase - https://github.com/mapbase-source/source-sdk-2013 ============// +// +// Purpose: Client classes for Half-Life 2 based custom weapons. +// +// Author: Peter Covington (petercov@outlook.com) +// +//==================================================================================// + #include "cbase.h" #include "c_weapon__stubs.h" #include "basehlcombatweapon_shared.h" diff --git a/sp/src/game/server/mapbase/custom_weapon_factory.cpp b/sp/src/game/server/mapbase/custom_weapon_factory.cpp index a8e17146..f7424412 100644 --- a/sp/src/game/server/mapbase/custom_weapon_factory.cpp +++ b/sp/src/game/server/mapbase/custom_weapon_factory.cpp @@ -1,3 +1,11 @@ +//========= Mapbase - https://github.com/mapbase-source/source-sdk-2013 ============// +// +// Purpose: The central manager of the custom weapons system. +// +// Author: Peter Covington (petercov@outlook.com) +// +//==================================================================================// + #include "cbase.h" #include "custom_weapon_factory.h" diff --git a/sp/src/game/server/mapbase/custom_weapon_factory.h b/sp/src/game/server/mapbase/custom_weapon_factory.h index fc01045d..f027ea86 100644 --- a/sp/src/game/server/mapbase/custom_weapon_factory.h +++ b/sp/src/game/server/mapbase/custom_weapon_factory.h @@ -1,3 +1,11 @@ +//========= Mapbase - https://github.com/mapbase-source/source-sdk-2013 ============// +// +// Purpose: See custom_weapon_factory.cpp +// +// Author: Peter Covington (petercov@outlook.com) +// +//==================================================================================// + #ifndef CUSTOM_WEAPON_FACTORY_H #define CUSTOM_WEAPON_FACTORY_H #pragma once diff --git a/sp/src/game/server/mapbase/weapon_custom_hl2.cpp b/sp/src/game/server/mapbase/weapon_custom_hl2.cpp index 7a374386..af29357c 100644 --- a/sp/src/game/server/mapbase/weapon_custom_hl2.cpp +++ b/sp/src/game/server/mapbase/weapon_custom_hl2.cpp @@ -1,3 +1,11 @@ +//========= Mapbase - https://github.com/mapbase-source/source-sdk-2013 ============// +// +// Purpose: Custom weapon classes for Half-Life 2 based weapons. +// +// Author: Peter Covington (petercov@outlook.com) +// +//==================================================================================// + #include "cbase.h" #include "custom_weapon_factory.h" #include "basebludgeonweapon.h"