Renamed To Kernel
This commit is contained in:
31
AwperativeKernel/Kernel/Scene/Scene.cs
Normal file
31
AwperativeKernel/Kernel/Scene/Scene.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace Awperative;
|
||||
|
||||
public sealed partial class Scene : ComponentDocker
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Whether the scene is enabled or not.
|
||||
/// </summary>
|
||||
public bool Enabled = true;
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Unique Name of the Scene
|
||||
/// </summary>
|
||||
public string Name;
|
||||
|
||||
|
||||
|
||||
internal Scene() {}
|
||||
|
||||
|
||||
|
||||
internal Scene(string __name) { Name = __name; }
|
||||
}
|
||||
Reference in New Issue
Block a user