Files
HLib/AutoTest/Core/TestModeUxer.cs
T
2026-06-01 13:23:34 +09:00

19 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.AutoTest.Core
{
public static class TestModeUxer
{
public static bool IsTestMode { get; private set; }
public static void SetTestMode(bool value)
{
IsTestMode = value;
}
}
}