Files
XCEngine/managed/XCEngine.ScriptCore/Rendering/Core/CommandBuffer.cs

19 lines
331 B
C#
Raw Normal View History

2026-04-25 15:34:19 +08:00
namespace XCEngine.Rendering
{
public sealed class CommandBuffer
{
public CommandBuffer()
: this(string.Empty)
{
}
public CommandBuffer(
string name)
{
this.name = name ?? string.Empty;
}
public string name { get; set; }
}
}