mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-12-05 00:06:05 +00:00
22 lines
551 B
C#
22 lines
551 B
C#
using Oshima.FunGame.OshimaModules;
|
|
using Oshima.FunGame.OshimaServers.Service;
|
|
using Application = System.Windows.Application;
|
|
|
|
namespace Milimoe.FunGame.Testing.Desktop
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
CharacterModule cm = new();
|
|
cm.Load();
|
|
SkillModule sm = new();
|
|
sm.Load();
|
|
ItemModule im = new();
|
|
im.Load();
|
|
FunGameService.InitFunGame();
|
|
FunGameSimulation.InitFunGameSimulation();
|
|
}
|
|
}
|
|
}
|