From 828473633c98256761d3a62304530eb9dc6a1b07 Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Thu, 26 Feb 2026 22:57:45 -0600 Subject: [PATCH] Updated AppContext Added DbSet for ItchIOAppData and SteamAppData --- lib/app_context.gd | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/app_context.gd b/lib/app_context.gd index f5a99f9e..1f622660 100644 --- a/lib/app_context.gd +++ b/lib/app_context.gd @@ -2,6 +2,10 @@ extends Context class_name OverlayContext var chatters: DbSet +var itch_apps: DbSet +var steam_apps: DbSet func _init() -> void: chatters = DbSet.new(Chatter) + itch_apps = DbSet.new(ItchIOAppData) + steam_apps = DbSet.new(SteamAppData)