Files
Adam Hathcock a6b99abd13 Generate structs for structs and fix struct out parameter if known (#8)
* Generate structs for structs and fix struct out parameter if known

* fmt
2024-06-17 17:04:52 +01:00

19 lines
374 B
C#

using Speckle.ProxyGenerator;
namespace ProxyInterfaceConsumer
{
[Proxy(
typeof(Address),
ImplementationOptions.ProxyBaseClasses,
ProxyClassAccessibility.Public,
new[] { "Weird" }
)]
public partial interface IAddress
{
public void Weird()
{
_Instance.Weird2();
}
}
}