VPet/VPet-Simulator.Core/Display/MainLogic.cs
2022-12-13 15:10:18 +08:00

31 lines
660 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
namespace VPet_Simulator.Core
{
public partial class Main
{
/// <summary>
/// 是否在默认情况(playnoaml)
/// </summary>
public bool IsNomal = true;
public Timer EventTimer = new Timer(15000)
{
AutoReset = true,
Enabled = true
};
private void EventTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
if (IsNomal)
{
}
}
}
}