mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-03 03:48:24 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
27 lines
694 B
C#
27 lines
694 B
C#
namespace Facepunch.InteropGen;
|
|
|
|
public class ArgWrapper : Arg
|
|
{
|
|
public Arg Base;
|
|
|
|
public override string NativeType => Base.NativeType;
|
|
public override string NativeDelegateType => Base.NativeDelegateType;
|
|
|
|
public override string ManagedType => Base.ManagedType;
|
|
public override string ManagedDelegateType => Base.ManagedDelegateType;
|
|
|
|
public override bool IsVoid => Base.IsVoid;
|
|
|
|
public override bool IsRealArgument => Base.IsRealArgument;
|
|
|
|
public override string GetManagedDelegateType( bool incoming )
|
|
{
|
|
return Base.GetManagedDelegateType( incoming );
|
|
}
|
|
|
|
public override string GetNativeDelegateType( bool incoming )
|
|
{
|
|
return Base.GetNativeDelegateType( incoming );
|
|
}
|
|
}
|