mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 19:10:32 +00:00
23 lines
591 B
C#
Executable File
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>();
|
|
}
|
|
}
|
|
}
|