From 0b93f091334a892852b6b10251f1222e5034c5bc Mon Sep 17 00:00:00 2001 From: RektInator Date: Wed, 18 Sep 2019 13:34:41 +0200 Subject: [PATCH] added credits --- src/Assemble.cpp | 8 ++++++++ src/IW5_PC.hpp | 8 ++++++++ src/IW6_PC.hpp | 8 ++++++++ src/ScriptfileDisasm.cpp | 8 ++++++++ src/stdafx.cpp | 8 ++++++++ src/stdafx.hpp | 8 ++++++++ 6 files changed, 48 insertions(+) diff --git a/src/Assemble.cpp b/src/Assemble.cpp index fa92bdf..ff78635 100644 --- a/src/Assemble.cpp +++ b/src/Assemble.cpp @@ -1,3 +1,11 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #include "stdafx.hpp" class Assembler diff --git a/src/IW5_PC.hpp b/src/IW5_PC.hpp index 94fe1c9..8016d85 100644 --- a/src/IW5_PC.hpp +++ b/src/IW5_PC.hpp @@ -1,3 +1,11 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #define OP_End 0x0 #define OP_Return 0x1 #define OP_GetByte 0x2 diff --git a/src/IW6_PC.hpp b/src/IW6_PC.hpp index 01ceb52..d07cbf9 100644 --- a/src/IW6_PC.hpp +++ b/src/IW6_PC.hpp @@ -1,3 +1,11 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #define OP_SetNewLocalVariableFieldCached0 0x17 #define OP_EvalSelfFieldVariable 0x18 #define OP_Return 0x19 diff --git a/src/ScriptfileDisasm.cpp b/src/ScriptfileDisasm.cpp index 469aaab..3cc4861 100644 --- a/src/ScriptfileDisasm.cpp +++ b/src/ScriptfileDisasm.cpp @@ -1,3 +1,11 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #include "stdafx.hpp" long flength(FILE* fp) diff --git a/src/stdafx.cpp b/src/stdafx.cpp index 7845e6a..5ef3e6f 100644 --- a/src/stdafx.cpp +++ b/src/stdafx.cpp @@ -1 +1,9 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #include "stdafx.hpp" diff --git a/src/stdafx.hpp b/src/stdafx.hpp index 9492ac0..d8ea679 100644 --- a/src/stdafx.hpp +++ b/src/stdafx.hpp @@ -1,3 +1,11 @@ +// ======================= ZoneTool ======================= +// zonetool, a fastfile linker for various +// Call of Duty titles. +// +// Project: https://github.com/ZoneTool/gsc-asm +// Author: RektInator (https://github.com/RektInator) +// License: GNU GPL v3.0 +// ======================================================== #pragma once #define _CRT_SECURE_NO_WARNINGS