Pong/Scripts/WallManager.cs

18 lines
310 B
C#
Raw Normal View History

using Godot;
using System;
public partial class WallManager : Area2D
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}