Files
peggle-roguelike/Pegs/HostilePeg.cs
T

16 lines
224 B
C#

using Godot;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
public partial class HostilePeg : Peg
{
public override void _Ready()
{
base._Ready();
}
}