42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace BigSpace.XRCore.Config
|
|
{
|
|
public class ConditionConfig
|
|
{
|
|
public int id { get; set; }
|
|
public string desc { get; set; }
|
|
public int type { get; set; }
|
|
public float rang { get; set; }
|
|
public float waitTime { get; set; }
|
|
public string banging { get; set; }
|
|
public int rolePointType { get; set; }
|
|
}
|
|
|
|
public class LevelConfig
|
|
{
|
|
public int id { get; set; }
|
|
public string sceneName { get; set; }
|
|
public string Desc { get; set; }
|
|
public string ExclusiceLevel { get; set; }
|
|
public string previousLevel { get; set; }
|
|
public float timeLimit { get; set; }
|
|
public int PassNumType { get; set; }
|
|
public int isMust { get; set; }
|
|
public string conditionIds { get; set; }
|
|
public string achievedEvent { get; set; }
|
|
public string PlotTimeLineId { get; set; }
|
|
public int jumpScene { get; set; }
|
|
}
|
|
|
|
public class SceneDataConfig
|
|
{
|
|
public int id { get; set; }
|
|
public string SceneName { get; set; }
|
|
public string LoadingSceneName { get; set; }
|
|
public float FadeDuration { get; set; }
|
|
public string Position { get; set; }
|
|
}
|
|
|
|
}
|