Files
Babushka/scripts/CSharp/Common/CharacterControls/DetectableInteractionArea.cs
T
kziolkowski 8f097de476 :memo::fire:🔨
- removed a lot of unnecessary code
- Made a minimal working version
- Added documentation
2025-10-24 15:13:35 +02:00

10 lines
261 B
C#

using Godot;
namespace Babushka.scripts.CSharp.Common.CharacterControls;
/// <summary>
/// Used for identifying <see cref="InteractionArea2D"/> scenes when listening for area overlaps.
/// </summary>
public partial class DetectableInteractionArea : Area2D
{
}