14 lines
218 B
C#
14 lines
218 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public enum EditToolValidationResult
|
|
{
|
|
Success,
|
|
|
|
BlockedTile,
|
|
|
|
CanOnlyBePlacedNearWater,
|
|
|
|
CanOnlyBePlacedOnFertileGround
|
|
}
|
|
}
|