FunGame-Testing/Library/Tests/SkillJSONTest.cs
2025-04-18 00:18:35 +08:00

20 lines
498 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 FunGameTesting();
}
}
}