mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
Constants, Types to data
This commit is contained in:
parent
a1c64cfeda
commit
1abc9bf973
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Collections.Generic;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Collections.Generic;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Collections.Generic;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Collections.Generic;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
{
|
||||
|
@ -3,6 +3,7 @@
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
using System.Linq;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
namespace Steamworks.Data
|
||||
{
|
||||
internal static class CallbackIdentifiers
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
using System.Linq;
|
||||
using Steamworks.Data;
|
||||
|
||||
namespace Steamworks
|
||||
namespace Steamworks.Data
|
||||
{
|
||||
internal struct GID_t
|
||||
{
|
||||
|
@ -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() );
|
||||
|
Loading…
Reference in New Issue
Block a user