Constants, Types to data

This commit is contained in:
Garry Newman 2019-04-16 15:05:19 +01:00
parent a1c64cfeda
commit 1abc9bf973
8 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,7 @@
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using Steamworks.Data;
namespace Steamworks
{

View File

@ -1,6 +1,7 @@
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using Steamworks.Data;
namespace Steamworks
{

View File

@ -1,6 +1,7 @@
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using Steamworks.Data;
namespace Steamworks
{

View File

@ -1,6 +1,7 @@
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using Steamworks.Data;
namespace Steamworks
{

View File

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

View File

@ -3,7 +3,7 @@
using System.Linq;
using Steamworks.Data;
namespace Steamworks
namespace Steamworks.Data
{
internal static class CallbackIdentifiers
{

View File

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

View File

@ -33,7 +33,7 @@ public void ToFolder( string folder )
{
sb = new StringBuilder();
Header();
Header( "Steamworks.Data" );
Types();
Footer();
System.IO.File.WriteAllText( $"{folder}SteamTypes.cs", sb.ToString() );
@ -49,7 +49,7 @@ public void ToFolder( string folder )
{
sb = new StringBuilder();
Header();
Header( "Steamworks.Data" );
Constants();
Footer();
System.IO.File.WriteAllText( $"{folder}SteamConstants.cs", sb.ToString() );