mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-21 19:59:34 +08:00
13 lines
247 B
C#
13 lines
247 B
C#
using Oshima.Core.Utils;
|
|
using Oshima.FunGame.OshimaModules;
|
|
|
|
CharacterModule cm = new();
|
|
cm.Load();
|
|
SkillModule sm = new();
|
|
sm.Load();
|
|
ItemModule im = new();
|
|
im.Load();
|
|
|
|
FunGameSimulation.InitCharacter();
|
|
FunGameSimulation.StartGame(true, true);
|