Files
2026-05-13 19:45:41 +07:00

14 lines
517 B
C#

namespace BrewMonster
{
public static class AddressResourceConfig
{
//prefab
public static string PlayerPrefab = "Player/PlayerPrefab";
public static string MonsterPrefab = "Monster/MonsterPrefab";
public static string NpcServerPrefab = "NPC/NPCServer";
public static string TestVfxPrefab = "Prefabs/Vfx/TestVfx";
public static string PetServerPrefab = "Pet/PetPrefab";
public static string PetMountServerPrefab = "Pet/PetMount/PetMountPrefab";
}
}