mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-07-01 23:09:37 +03:00
28 lines
456 B
C#
28 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
public static class Cleanup
|
|
{
|
|
public static string ConvertType( string type )
|
|
{
|
|
type = type.Replace( "CSteamID", "SteamId" );
|
|
type = type.Replace( "CGameID", "GameId" );
|
|
|
|
|
|
return type;
|
|
}
|
|
|
|
public static bool ShouldCreate( string type )
|
|
{
|
|
if ( type == "SteamId" ) return false;
|
|
|
|
|
|
return true;
|
|
}
|
|
}
|