mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-08-01 08:18:20 -04:00
14 lines
244 B
C#
14 lines
244 B
C#
namespace Facepunch.InteropGen;
|
|
|
|
[TypeName( "float" )]
|
|
public class ArgFloat : Arg
|
|
{
|
|
public override string ManagedType => "float";
|
|
}
|
|
|
|
[TypeName( "double" )]
|
|
public class ArgDouble : Arg
|
|
{
|
|
public override string ManagedType => "double";
|
|
}
|