using Fantasy; using Fantasy.Platform.Net; namespace NB.Common; public class SceneConfigHelper { public static SceneConfig GetConfig(int sceneType) { var gameSceneConfigs = SceneConfigData.Instance.GetSceneBySceneType(sceneType); return gameSceneConfigs.First(); } }