a6b99abd13
* Generate structs for structs and fix struct out parameter if known * fmt
19 lines
374 B
C#
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();
|
|
}
|
|
}
|
|
}
|