mirror of
https://github.com/kwsch/pkNX.git
synced 2026-08-26 20:34:07 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
15 lines
514 B
C#
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";
|
|
}
|