Added TerraformingTools & functionality
This commit is contained in:
parent
4612938b54
commit
1e2ae28c12
8 changed files with 65 additions and 15 deletions
17
Assets/Scripts/Items/TerraformingTools/TerraformingTool.cs
Normal file
17
Assets/Scripts/Items/TerraformingTools/TerraformingTool.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
|
||||
namespace Items.TerraformingTools
|
||||
{
|
||||
public abstract class TerraformingTool : UsableItem
|
||||
{
|
||||
public readonly Type TileType;
|
||||
|
||||
protected TerraformingTool(Type tileType, string displayName, string description, int id) :
|
||||
base(displayName, description, id)
|
||||
{
|
||||
this.TileType = tileType;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue