25 lines
626 B
C#
25 lines
626 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BrewMonster
|
|
{
|
|
public static class ElementClient
|
|
{
|
|
public static CECConfigs g_GameCfgs;
|
|
|
|
public static bool _InitGameApp()
|
|
{
|
|
g_GameCfgs = new CECConfigs();
|
|
if (!g_GameCfgs.Init("Configs\\element_client.cfg", "client_id.cfg", "userdata\\SystemSettings.ini"))
|
|
{
|
|
BMLogger.LogError("_InitGameApp(), Failed to load configs file");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|