mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-21 19:59:34 +08:00
20 lines
499 B
C#
20 lines
499 B
C#
using Addons;
|
|
|
|
namespace Milimoe.FunGame.Testing.Tests
|
|
{
|
|
internal class SkillJSONTest
|
|
{
|
|
public SkillJSONTest()
|
|
{
|
|
//Factory.CreateGameModuleEntityConfig<Item>(nameof(SkillJSONTest), nameof(Item), []);
|
|
ExampleCharacterModule cm = new();
|
|
cm.Load();
|
|
ExampleItemModule im = new();
|
|
im.Load();
|
|
ExampleSkillModule sm = new();
|
|
sm.Load();
|
|
_ = new FunGameSimulation();
|
|
}
|
|
}
|
|
}
|