14 lines
172 B
C#
14 lines
172 B
C#
using Godot;
|
|
using System;
|
|
|
|
public class SelectionMode : Mode
|
|
{
|
|
protected override void OnDisabled()
|
|
{
|
|
}
|
|
|
|
protected override void OnEnabled()
|
|
{
|
|
}
|
|
}
|