18 lines
700 B
C#
18 lines
700 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";
|
|
|
|
|
|
public static float m_fDistShowModelVisual = 25f; // Display distance model NPC
|
|
public static float m_fDistHideModelVisual = 40f; // Hide/display distance model NPC
|
|
}
|
|
}
|