|
|
@@ -10,17 +10,16 @@ using GamecraftModdingAPI.Utility; |
|
|
|
using IllusionPlugin; |
|
|
|
using RobocraftX.CommandLine.Custom; |
|
|
|
using Unity.Mathematics; |
|
|
|
using uREPL; |
|
|
|
using Main = GamecraftModdingAPI.Main; |
|
|
|
|
|
|
|
namespace BlockMod |
|
|
|
namespace BuildingTools |
|
|
|
{ |
|
|
|
public class BlockMod : IEnhancedPlugin |
|
|
|
public class BuildingTools : IEnhancedPlugin |
|
|
|
{ |
|
|
|
private readonly CommandUtils _commandUtils; |
|
|
|
private readonly BlockSelections _blockSelections; |
|
|
|
|
|
|
|
public BlockMod() |
|
|
|
public BuildingTools() |
|
|
|
{ |
|
|
|
_blockSelections = new BlockSelections(); |
|
|
|
_commandUtils = new CommandUtils(_blockSelections); |
|
|
@@ -196,7 +195,7 @@ namespace BlockMod |
|
|
|
|
|
|
|
public override void OnApplicationQuit() => Main.Shutdown(); |
|
|
|
|
|
|
|
public override string Name { get; } = "BlockMod"; |
|
|
|
public override string Name { get; } = "BuildingTools"; |
|
|
|
public override string Version { get; } = "v1.0.0"; |
|
|
|
} |
|
|
|
} |