Change codegen to make interface classes partial

This commit is contained in:
Jake Rich 2024-08-12 21:29:49 -04:00
parent d18086a1b8
commit 6dd32eb5c4

View File

@ -23,7 +23,7 @@ public void GenerateInterface( SteamApiDefinition.Interface iface, string folder
StartBlock( $"namespace Steamworks" );
{
StartBlock( $"internal unsafe class {iface.Name} : SteamInterface" );
StartBlock( $"internal unsafe partial class {iface.Name} : SteamInterface" );
{
WriteLine();
StartBlock( $"internal {iface.Name}( bool IsGameServer )" );