mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-07-31 07:48:52 -04:00
9 lines
197 B
C#
9 lines
197 B
C#
namespace Facepunch.InteropGen;
|
|
|
|
[TypeName( "ushort" )]
|
|
public class ArgUShort : Arg
|
|
{
|
|
public override string ManagedType => "ushort";
|
|
public override string NativeType => "unsigned short";
|
|
}
|