From bfc6409526c9f6a5b0872f15db43b5eb8c10793b Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Tue, 22 Oct 2019 16:22:21 +0200 Subject: [PATCH] Add startup banner to Il2CppDumper --- Il2CppDumper/Program.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Il2CppDumper/Program.cs b/Il2CppDumper/Program.cs index bc73993..af4ace5 100644 --- a/Il2CppDumper/Program.cs +++ b/Il2CppDumper/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Katy Coe - https://www.djkaty.com - https://github.com/djkaty +// Copyright (c) 2017-2019 Katy Coe - https://www.djkaty.com - https://github.com/djkaty // All rights reserved using System; @@ -10,6 +10,11 @@ namespace Il2CppInspector { static void Main(string[] args) { + // Banner + Console.WriteLine("Il2CppDumper"); + Console.WriteLine("(c) 2017-2019 Katy Coe - www.djkaty.com"); + Console.WriteLine(""); + // Command-line usage: dotnet run [ [ []]] // Defaults to libil2cpp.so or GameAssembly.dll if binary file not specified string imageFile = "libil2cpp.so";