FunGame-Testing/Library/Tests/SkillJSONTest.cs
2024-10-25 19:27:00 +08:00

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();
}
}
}