Generated structs into Data

This commit is contained in:
Garry Newman 2019-04-16 15:00:22 +01:00
parent da17648ade
commit a1c64cfeda
9 changed files with 9 additions and 2 deletions

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
using System.Linq; using System.Linq;
using Steamworks.Data; using Steamworks.Data;
namespace Steamworks namespace Steamworks.Data
{ {
internal struct CallbackMsg_t internal struct CallbackMsg_t
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -4,6 +4,7 @@ using System.Linq;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Steamworks.Data;
namespace Steamworks namespace Steamworks
{ {

View File

@ -41,7 +41,7 @@ namespace Generator
{ {
sb = new StringBuilder(); sb = new StringBuilder();
Header(); Header( "Steamworks.Data" );
Structs(); Structs();
Footer(); Footer();
System.IO.File.WriteAllText( $"{folder}SteamStructs.cs", sb.ToString() ); System.IO.File.WriteAllText( $"{folder}SteamStructs.cs", sb.ToString() );