push project up sabs assets

This commit is contained in:
2026-08-07 02:50:54 -05:00
parent 71b666c683
commit f5d6c640ae
131 changed files with 4604 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
class_name PoolTableManagerBase extends Node3D
@onready var cue: Cue = $cue
@onready var balls: Balls = $balls
var white_ball_sunk: bool = false
var white_ball_hard_sunk: bool = false
func _white_ball_sunk() -> void:
assert(false, "This method needs to be overridden...")
func _white_ball_needs_hard_reset() -> void:
assert(false, "This method needs to be overridden...")
func _balls_stopped_moving() -> void:
assert(false, "This method needs to be overridden...")