Files
iFactory.Cutting.Unity/Assets/BITKit/Core/Mod/ModCommands.cs
CortexCore 2c8dfd3c86 1
2024-03-05 15:27:29 +08:00

15 lines
261 B
C#

using System.Collections;
using System.Collections.Generic;
namespace BITKit.Mod
{
public struct LoadFromFolderCommand
{
public string FolderPath;
}
public struct UninstallPackageCommand
{
public string PackageName;
}
}