NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Pause/Data/IPauser.cs

20 lines
295 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gameplay.Pause
{
public interface IPauser
{
2023-10-19 15:00:19 +08:00
bool isEffect { get; set; }
2023-08-22 19:08:45 +08:00
bool IsNeedRemove();
void LogicUpdate(float dt);
}
}