SupaLidlGame/Characters/Player.cs

14 lines
181 B
C#
Raw Normal View History

2022-11-10 20:29:53 -08:00
using Godot;
using System;
namespace SupaLidlGame.Characters
{
2022-11-13 15:42:04 -08:00
public partial class Player : Character
{
public override void _Ready()
{
2022-11-10 20:29:53 -08:00
2022-11-13 15:42:04 -08:00
}
}
2022-11-10 20:29:53 -08:00
}