Files
sbox-public/engine/Tools/InteropGen/Arguments/ArgWrapper.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

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 );
}
}