## BREAKING CHANGE **Publishing for linux will no longer include runtimes** ## Major Changes * Adds .NET 7 support. * Adds ARM64 support (experimental). * Changes linux support to be open-ended against anything .NET 7 supports. * Fixes native library resolutions. (Make sure to install `dev` versions of the libraries) * Updates README * Adds Ubuntu 22, CentOS 8/9 Stream to CI/CD. ## TODOs: * Update modernuo.com docs Closes #1173 Closes #1159
29 lines
745 B
C#
29 lines
745 B
C#
using System.Buffers;
|
|
using Server.Collections;
|
|
|
|
namespace Server.Gumps;
|
|
|
|
public abstract class GumpEntry
|
|
{
|
|
private Gump m_Parent;
|
|
|
|
public Gump Parent
|
|
{
|
|
get => m_Parent;
|
|
set
|
|
{
|
|
if (m_Parent != value)
|
|
{
|
|
m_Parent?.Remove(this);
|
|
|
|
m_Parent = value;
|
|
|
|
m_Parent?.Add(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Replace OrderedHashSet with InsertOnlyHashSet, a copy of HashSet that is ReadOnly compatible, but includes
|
|
// a public AddIfNotPresent function that returns the index of the element
|
|
public abstract void AppendTo(ref SpanWriter writer, OrderedHashSet<string> strings, scoped ref int entries, scoped ref int switches);
|
|
}
|