12 lines
192 B
C#
12 lines
192 B
C#
using Godot;
|
|
using Newlon;
|
|
|
|
public partial class LeftBoundaryMarker : Marker2D
|
|
{
|
|
public override void _Ready()
|
|
{
|
|
Utility.LeftFieldBoundary = (Vector2I)GlobalPosition;
|
|
QueueFree();
|
|
}
|
|
|
|
}
|