Mirror/Assets/Mirage.Profiler/Editor/Table/EmptyRow.cs
2024-01-16 08:58:48 +00:00

23 lines
591 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine.UIElements;
namespace Mirage.NetworkProfiler.ModuleGUI.UITable
{
internal class EmptyRow : Row
{
public EmptyRow(Table table, Row previous = null) : base(table, previous) { }
public override Label GetLabel(ColumnInfo column)
{
throw new NotSupportedException("Empty row does not have any columns");
}
public override IEnumerable<VisualElement> GetChildren()
{
return Enumerable.Empty<VisualElement>();
}
}
}