Computers

This commit is contained in:
Marco 2025-02-07 11:15:57 +01:00
commit c41967572b
23 changed files with 655 additions and 11 deletions

View file

@ -0,0 +1,17 @@
using Godot;
using System;
public partial class Computer : Interactable
{
[Export] public Activable Target { get; set; }
public override bool Activate()
{
if (MeetsRequirements())
{
Target?.Activate();
return true;
}
return false;
}
}