Files
pkNX/pkNX.Structures.FlatBuffers/Util/FlatDummyEntry.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

15 lines
514 B
C#

using System;
using System.ComponentModel;
using FlatSharp.Attributes;
// ReSharper disable ClassNeverInstantiated.Global
namespace pkNX.Structures.FlatBuffers;
[FlatBufferTable, TypeConverter(typeof(ExpandableObjectConverter))]
public class FlatDummyEntry
{
// Throw on ctor as all arrays of this object type should never have any entries.
public FlatDummyEntry() => throw new ArgumentException("Cannot create an instance of a dummy object.");
public override string ToString() => "UNUSED ARRAY";
}