14 lines
571 B
C#
14 lines
571 B
C#
namespace BrewMonster
|
|
{
|
|
public static class AddressResourceConfig
|
|
{
|
|
//prefab
|
|
public static string PlayerPrefab = "Prefabs/Player/PlayerPrefab";
|
|
public static string MonsterPrefab = "Prefabs/Monster/MonsterPrefab";
|
|
public static string NpcServerPrefab = "Prefabs/NPC/NPCServer";
|
|
public static string TestVfxPrefab = "Prefabs/Vfx/TestVfx";
|
|
public static string PetServerPrefab = "Assets/Prefabs/Pet/PetPrefab";
|
|
public static string PetMountServerPrefab = "Assets/Prefabs/Pet/PetMount/PetMountPrefab";
|
|
}
|
|
}
|