mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-25 10:05:49 +08:00
10 lines
189 B
C#
10 lines
189 B
C#
using System;
|
|
|
|
namespace BetterGenshinImpact.CombatScript;
|
|
|
|
public interface IInstructionSymbolHasDuration
|
|
{
|
|
public bool HasDuration { get; }
|
|
|
|
public TimeSpan Duration { get; }
|
|
} |