You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
540 B
25 lines
540 B
using Babushka.scripts.CSharp.Common.Farming;
|
|
using Godot;
|
|
|
|
namespace Babushka.scripts.CSharp.Common.CharacterControls;
|
|
|
|
public partial class VesnaBehaviour : Node
|
|
{
|
|
[ExportGroup("Farming")]
|
|
[Export] private Node _fieldParent;
|
|
[Export] private FarmingControls _farmingControls;
|
|
|
|
public override void _Ready()
|
|
{
|
|
_farmingControls.FieldParent = _fieldParent;
|
|
}
|
|
|
|
#region Farming
|
|
|
|
public void ActivateHoe(bool activate)
|
|
{
|
|
_farmingControls.ActivateHoe(activate);
|
|
}
|
|
|
|
#endregion
|
|
} |