mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-08-01 08:18:20 -04:00
9 lines
189 B
C#
9 lines
189 B
C#
namespace Facepunch.InteropGen;
|
|
|
|
[TypeName( "uint" )]
|
|
public class ArgUInt : Arg
|
|
{
|
|
public override string ManagedType => "uint";
|
|
public override string NativeType => "unsigned int";
|
|
}
|