Show More
Commit Description:
Further refactoring....
Commit Description:
Further refactoring. I don't love this, but I think it lays the groundwork for future refactorings.
Show/Diff file:
Action:
isometric-park-fna/Components/ToggleToolComponents.cs
20 lines | 290 B | text/x-csharp | CSharpLexer
using Encompass;
using isometricparkfna.Messages;
namespace isometricparkfna.Components {
public enum Tool
{
None,
Preserve,
Dezone,
Tower,
Bulldozer
}
public struct ToolComponent : IComponent {
public Tool Tool;
}
}