This commit is contained in:
chi
2025-04-23 09:57:01 +09:00
parent 5d286d5179
commit 9d2467d50a
8 changed files with 178 additions and 116 deletions

21
sample/Pub.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SampleProject
{
public static class Pub
{
public static Settings Setting { get; set; }
public static void init()
{
Setting = new Settings();
Setting.Load();
}
}
}