コード例 #1
0
ファイル: Scene.cs プロジェクト: Powerino73/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentBase" /> class.
 /// </summary>
 /// <param name="name">The name attached to this component</param>
 public Scene(string name)
     : base(name, true)
 {
     // By default a scene always have a SceneComponent
     Settings = new SceneComponent();
 }
コード例 #2
0
ファイル: Scene.cs プロジェクト: dhootha/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentBase" /> class.
 /// </summary>
 /// <param name="name">The name attached to this component</param>
 public Scene(string name)
     : base(name, true)
 {
     // By default a scene always have a SceneComponent
     Settings = new SceneComponent();
 }