mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-08-02 08:50:18 -04:00
9 lines
190 B
C#
9 lines
190 B
C#
namespace Facepunch.InteropGen;
|
|
|
|
[TypeName( "byte" )]
|
|
public class ArgByte : Arg
|
|
{
|
|
public override string ManagedType => "byte";
|
|
public override string NativeType => "unsigned char";
|
|
}
|