7-10-25 11:32am7-10-25 11:32am7-10-25 11:32am7-10-25 11:32am7-10-25

11:32am7-10-25 11:32am7-10-25 11:32am7-10-25 11:32am7-10-25
11:32am7-10-25 11:32am
This commit is contained in:
2025-07-10 11:31:52 -04:00
parent 1c1266fd25
commit 9057a21613
24 changed files with 595 additions and 463 deletions

16
Gameplay/Player.cs Normal file
View File

@@ -0,0 +1,16 @@
using Godot;
using System;
using System.Collections.Generic;
public partial class Player : Node
{
public List<Shark> _sharks;
public List<SharkHud> _sharkHuds;
public override void _Ready()
{
}
}