Awperative Beta Complete! V1.0

This commit is contained in:
2026-02-15 20:38:50 -05:00
parent 1f96b653ad
commit 283cadc490
5 changed files with 19 additions and 5 deletions

View 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;
/// <summary>
/// Unique Name of the Scene
/// </summary>
public string Name;
internal Scene() {}
internal Scene(string __name) { Name = __name; }
}