filesystem rework

This commit is contained in:
Rendo 2025-07-19 20:13:34 +05:00
commit 2905db3dce
174 changed files with 93 additions and 353 deletions

View file

@ -4,8 +4,8 @@ using System.Collections.Generic;
public partial class GameRegistry : Node
{
private const string PLANT_RESOURCE_PATH = "res://resources/plants/";
private const string ZOMBIE_RESOURCE_PATH = "res://resources/zombies/";
private const string PLANT_RESOURCE_PATH = "res://assets/plants/";
private const string ZOMBIE_RESOURCE_PATH = "res://assets/zombies/";
public static GameRegistry Instance { get; private set; }
public static readonly Dictionary<string, PlantResource> PlantDictionary = [];
public static readonly Dictionary<string, ZombieResource> ZombieDictionary = [];