Skip to content

Commit

Permalink
Tool release 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrdacor committed Jun 2, 2022
1 parent ff37738 commit 26b1711
Show file tree
Hide file tree
Showing 17 changed files with 64 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Authors>Robert Schneckenhaus</Authors>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<TrimmableAssembly Include="Avalonia.Themes.Default" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="Avalonia" Version="0.10.14" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.14" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<RepositoryUrl>https://github.com/Pyrdacor/Ambermoon</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>Ambermoon ADF Extract File Legacy Amiga Disk</PackageTags>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
5 changes: 3 additions & 2 deletions AmbermoonTools/AmbermoonEditor/AmbermoonEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Common" Version="10.6.6" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Authors>Robert Schneckenhaus</Authors>
<Description>Command line tool to edit map or NPC events.</Description>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<PackageProjectUrl>https://github.com/Pyrdacor/Ambermoon</PackageProjectUrl>
<RepositoryUrl>https://github.com/Pyrdacor/Ambermoon</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
Expand All @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions AmbermoonTools/AmbermoonItemEditor/AmbermoonItemEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Authors>Robert Schneckenhaus</Authors>
<Description>Command line tool to edit, create or delete items.</Description>
<PackageProjectUrl>https://github.com/Pyrdacor/Ambermoon</PackageProjectUrl>
Expand All @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Authors>Robert Schneckenhaus</Authors>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
22 changes: 16 additions & 6 deletions AmbermoonTools/AmbermoonLabdataEditor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
{ ObjectFlags.AllowMovementMonster, "Allow Monster Move" }
};

if (args.Length != 2)
{
Console.WriteLine("Usage: AmbermoonLabdataEditor <labdataFilePath> <gameDataPath>");
Console.WriteLine();
Console.WriteLine("labdataFilePath: Path to the extracted single labdata file.");
Console.WriteLine("gameDataPath: Path to Ambermoon data (Amberfiles folder).");
Console.WriteLine();
return;
}

var gameData = new GameData(GameData.LoadPreference.PreferExtracted, null, false);
gameData.Load(args[1]);

Expand Down Expand Up @@ -170,8 +180,8 @@ void PrintWalls(bool brief)
{
if (i != 0 && i % 10 == 0)
{
Console.WriteLine("Press key to continue");
Console.ReadKey();
Console.WriteLine("Press return to continue");
Console.ReadLine();
}

var wall = labdata.Walls[i];
Expand Down Expand Up @@ -215,8 +225,8 @@ void PrintObjects(bool brief)
{
if (i != 0 && i % 10 == 0)
{
Console.WriteLine("Press key to continue");
Console.ReadKey();
Console.WriteLine("Press return to continue");
Console.ReadLine();
}

var obj = labdata.Objects[i];
Expand Down Expand Up @@ -260,8 +270,8 @@ void PrintObjectInfos(bool brief)
{
if (i != 0 && i % 10 == 0)
{
Console.WriteLine("Press key to continue");
Console.ReadKey();
Console.WriteLine("Press return to continue");
Console.ReadLine();
}

var objectInfo = labdata.ObjectInfos[i];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifiers>win-x64;win-x86</RuntimeIdentifiers>
<UseWindowsForms>true</UseWindowsForms>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Authors>Robert Schneckenhaus</Authors>
</PropertyGroup>

Expand All @@ -25,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
<PackageReference Include="NAudio" Version="2.1.0" />
<PackageReference Include="SonicArranger" Version="1.0.9" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<Authors>Robert Schneckenhaus</Authors>
<Description>Command line tool to show and edit monster values of legacy Ambermoon game data.</Description>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,18 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;

namespace AmbermoonMonsterValueChanger
namespace AmbermoonMonsterEditor
{
class Program
{
static void Usage()
{
Console.WriteLine("USAGE: AmbermoonMonsterValueChanger --list");
Console.WriteLine(" AmbermoonMonsterValueChanger <monsterIdOrName> <offset> <size>");
Console.WriteLine(" AmbermoonMonsterValueChanger <monsterIdOrName> <offset> <size> <value>");
Console.WriteLine(" AmbermoonMonsterValueChanger --all <offset> <size>");
Console.WriteLine(" AmbermoonMonsterValueChanger --all-not-0 <offset> <size>");
Console.WriteLine("USAGE: AmbermoonMonsterEditor --list");
Console.WriteLine(" AmbermoonMonsterEditor <monsterIdOrName> <offset> <size>");
Console.WriteLine(" AmbermoonMonsterEditor <monsterIdOrName> <offset> <size> <value>");
Console.WriteLine(" AmbermoonMonsterEditor --all <offset> <size>");
Console.WriteLine(" AmbermoonMonsterEditor --all-not-0 <offset> <size>");
Console.WriteLine();
Console.WriteLine("1st version shows all monsters with their id and name.");
Console.WriteLine("2nd version shows a value at the given offset with a given size.");
Expand Down
4 changes: 2 additions & 2 deletions AmbermoonTools/AmbermoonPack/AmbermoonPack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<RepositoryType>Github</RepositoryType>
<PackageTags>Ambermoon Packer File Legacy Amiga Compression Encryption</PackageTags>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions AmbermoonTools/AmbermoonTextImport/AmbermoonTextImport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<Authors>Robert Schneckenhaus</Authors>
<Description>Command line tool to export and import texts from/into legacy Ambermoon game data.</Description>
<RuntimeIdentifiers>win-x64;win-x86;linux-x64</RuntimeIdentifiers>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Configurations>Debug;Release;ReleaseLinux</Configurations>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.8" />
<PackageReference Include="Ambermoon.Data.Legacy" Version="10.6.9" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion AmbermoonTools/AmbermoonTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AmbermoonEditor", "Ambermoo
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AmbermoonPack", "AmbermoonPack\AmbermoonPack.csproj", "{5A049015-D6F7-4DE9-86E5-1289053DC54B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AmbermoonMonsterValueChanger", "AmbermoonMonsterValueChanger\AmbermoonMonsterValueChanger.csproj", "{A5F2021C-9DFA-4195-A5E0-3E1090D93B38}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AmbermoonMonsterEditor", "AmbermoonMonsterEditor\AmbermoonMonsterEditor.csproj", "{A5F2021C-9DFA-4195-A5E0-3E1090D93B38}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AmbermoonTextImport", "AmbermoonTextImport\AmbermoonTextImport.csproj", "{7F4DC336-1F5E-4701-ABD2-EF18DCACE48F}"
EndProject
Expand Down
4 changes: 2 additions & 2 deletions AmbermoonTools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The most recent version can be found here:

Version | Windows 64bit | Linux 64bit | Windows 32bit
--- | --- | --- | ---
1.0.11 | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.11/AmbermoonTools-Windows.zip) | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.11/AmbermoonTools-Linux.tar.gz) | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.11/AmbermoonTools-Windows32Bit.zip)
1.0.12 | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.12/AmbermoonTools-Windows.zip) | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.12/AmbermoonTools-Linux.tar.gz) | [Download](https://github.com/Pyrdacor/Ambermoon/releases/download/v1.0.12/AmbermoonTools-Windows32Bit.zip)

Most tools have a help. Try to run with command line argument `--help` for further information.

Expand All @@ -24,5 +24,5 @@ If you just want to use the tools, the runtime is enough. But if you want to bui
On Linux you may also use `snap install dotnet-sdk`.

- After the SDK is installed, navigate to the directory of the desired tool (e.g., `cd AmbermoonTextImport`).
- Run a command such as `dotnet publish -c release -r ubuntu.20.04-x64 --self-contained` (replacing `ubuntu.20.04` with whatever is appropriate for your system). You can find general runtime IDs here: https://docs.microsoft.com/en-us/dotnet/core/rid-catalog.
- Run a command such as `dotnet publish -c release -r ubuntu.20.04-x64 --self-contained -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true` (replacing `ubuntu.20.04` with whatever is appropriate for your system). You can find general runtime IDs here: https://docs.microsoft.com/en-us/dotnet/core/rid-catalog.
- The compiled executable will be located inside a folder something like `./bin/release/net6.0/ubuntu.20.04-x64/publish/`
12 changes: 6 additions & 6 deletions AmbermoonTools/publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ if ($isWindows) {
Write-Host Publish Windows executables
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonPack/AmbermoonPack.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x86 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonPack/AmbermoonPack.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterValueChanger/AmbermoonMonsterValueChanger.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x86 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterValueChanger/AmbermoonMonsterValueChanger.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterEditor/AmbermoonMonsterEditor.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x86 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterEditor/AmbermoonMonsterEditor.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonTextImport/AmbermoonTextImport.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x86 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonTextImport/AmbermoonTextImport.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonDiskExtract/AmbermoonDiskExtract.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r win-x86 --no-restore --no-self-contained --nologo
Expand All @@ -21,7 +21,7 @@ if ($isWindows) {
Write-Host Pack zip for Windows
mkdir dist
copy "AmbermoonTools\AmbermoonPack\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonPack.exe" "dist\"
copy "AmbermoonTools\AmbermoonMonsterValueChanger\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonMonsterValueChanger.exe" "dist\"
copy "AmbermoonTools\AmbermoonMonsterEditor\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonMonsterEditor.exe" "dist\"
copy "AmbermoonTools\AmbermoonTextImport\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonTextImport.exe" "dist\"
copy "AmbermoonTools\AmbermoonDiskExtract\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonDiskExtract.exe" "dist\"
copy "AmbermoonTools\AmbermoonEventEditor\bin\Any CPU\Release\net6.0\win-x64\publish\AmbermoonEventEditor.exe" "dist\"
Expand All @@ -34,7 +34,7 @@ if ($isWindows) {
cd ..
rm -r dist\*.*
copy "AmbermoonTools\AmbermoonPack\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonPack.exe" "dist\"
copy "AmbermoonTools\AmbermoonMonsterValueChanger\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonMonsterValueChanger.exe" "dist\"
copy "AmbermoonTools\AmbermoonMonsterEditor\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonMonsterEditor.exe" "dist\"
copy "AmbermoonTools\AmbermoonTextImport\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonTextImport.exe" "dist\"
copy "AmbermoonTools\AmbermoonDiskExtract\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonDiskExtract.exe" "dist\"
copy "AmbermoonTools\AmbermoonEventEditor\bin\Any CPU\Release\net6.0\win-x86\publish\AmbermoonEventEditor.exe" "dist\"
Expand All @@ -49,7 +49,7 @@ if ($isWindows) {
} else {
Write-Host Publish Linux executable
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonPack/AmbermoonPack.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterValueChanger/AmbermoonMonsterValueChanger.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonMonsterEditor/AmbermoonMonsterEditor.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonTextImport/AmbermoonTextImport.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonDiskExtract/AmbermoonDiskExtract.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/AmbermoonEventEditor/AmbermoonEventEditor.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
Expand All @@ -58,7 +58,7 @@ if ($isWindows) {
dotnet publish -c $env:CONFIGURATION "./AmbermoonTools/Ambermoon3DMapViewer/Ambermoon3DMapViewer.csproj" -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -r linux-x64 --no-restore --no-self-contained --nologo
Write-Host Pack tar.gz for Linux
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonPack/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonPack"
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonMonsterValueChanger/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonMonsterValueChanger"
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonMonsterEditor/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonMonsterEditor"
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonTextImport/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonTextImport"
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonDiskExtract/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonDiskExtract"
7z a AmbermoonTools-Linux.tar "./AmbermoonTools/AmbermoonEventEditor/bin/Any CPU/ReleaseLinux/net6.0/linux-x64/publish/AmbermoonEventEditor"
Expand Down
Loading

0 comments on commit 26b1711

Please sign in to comment.