mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-04 13:15:54 +00:00
11 lines
170 B
C#
11 lines
170 B
C#
using Godot;
|
|
using System;
|
|
using System.Diagnostics;
|
|
|
|
public partial class Activable : Node2D
|
|
{
|
|
public virtual void Activate()
|
|
{
|
|
//Debug.WriteLine("Activated");
|
|
}
|
|
}
|