Add startup banner to Il2CppDumper

This commit is contained in:
Katy Coe
2019-10-22 16:22:21 +02:00
parent 298db65a71
commit bfc6409526

View File

@@ -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 // All rights reserved
using System; using System;
@@ -10,6 +10,11 @@ namespace Il2CppInspector
{ {
static void Main(string[] args) { 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 [<binary-file> [<metadata-file> [<output-file>]]] // Command-line usage: dotnet run [<binary-file> [<metadata-file> [<output-file>]]]
// Defaults to libil2cpp.so or GameAssembly.dll if binary file not specified // Defaults to libil2cpp.so or GameAssembly.dll if binary file not specified
string imageFile = "libil2cpp.so"; string imageFile = "libil2cpp.so";