Add data-driven fish selection and catch showcase

This commit is contained in:
Alexander Sellite 2026-07-25 15:15:24 -04:00
parent ae2f724fe2
commit bd2768b676
39 changed files with 1226 additions and 58 deletions

6
fish/fish_pool.gd Normal file
View file

@ -0,0 +1,6 @@
class_name FishPool
extends Resource
const FishDataType = preload("res://fish/fish_data.gd")
@export var candidates: Array[FishDataType] = []