7-21-25 @ 3:17 am

This commit is contained in:
2025-07-21 03:17:09 -04:00
parent ea03cc152a
commit f351f0ade9
13 changed files with 375 additions and 164 deletions

19
Gameplay/CueBall.cs Normal file
View File

@@ -0,0 +1,19 @@
using Godot;
using System;
using System.Data;
public partial class CueBall : Ball
{
new public static CueBall _Create()
{
PackedScene scene = ResourceLoader.Load<PackedScene>("res://Gameplay/cue_ball.tscn");
CueBall newBall = scene.Instantiate<CueBall>();
newBall._isCue = true;
newBall.GetNode<Sprite2D>("Image").Texture = GD.Load<Texture2D>("res://art/cue_ball.png");
return newBall;
}
}