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