Files
2026-04-19 00:43:27 +02:00

20 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Godot;
using RobotAndDonkey.Game.Execution.Results;
namespace DonkeysAndDroids
{
public interface IScreen
{
void Deactivate();
void EnableInputs();
void DisableInputs();
void Activate();
bool HandleResult(Result result, Tween tween);
}
}