Archived
Private
Public Access
1
0

Reworked MloCombiner

This commit is contained in:
2022-10-26 17:28:27 +02:00
parent e71b87d9fa
commit a565b9287c
85 changed files with 711 additions and 16483 deletions

28
MloCombiner/Constants.cs Normal file
View File

@@ -0,0 +1,28 @@
namespace MloCombiner {
public class Constants {
public const string DoneString = "Done!";
public const string Motd = @"
___ ____ _____ _ _
| \/ | | / __ \ | | (_)
| . . | | ___ | / \/ ___ _ __ ___ | |__ _ _ __ ___ _ __
| |\/| | |/ _ \| | / _ \| '_ ` _ \| '_ \| | '_ \ / _ \ '__|
| | | | | (_) | \__/\ (_) | | | | | | |_) | | | | | __/ |
\_| |_/_|\___/ \____/\___/|_| |_| |_|_.__/|_|_| |_|\___|_|
";
public static readonly string[] KnownMetaFiles = { "__resource.lua", "fxmanifest.lua" };
public const string ManifestContent = @"
fx_version 'bodacious'
game 'gta5'
author 'prp'
version '1.0.0'
this_is_a_map 'yes'
";
}
}