Make judge event internal.

This commit is contained in:
2023-05-20 22:36:08 +08:00
parent 906c82972b
commit ca928eb731
3 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ using System.Text.Formatting;
using UnsafeIL;
namespace Cryville.Crtr {
public struct JudgeEvent {
internal struct JudgeEvent {
public double StartTime { get; set; }
public double EndTime { get; set; }
public double StartClip { get; set; }
@@ -20,7 +20,7 @@ namespace Cryville.Crtr {
public JudgeDefinition Definition { get; set; }
public NoteHandler Handler { get; set; }
}
public interface IJudge {
internal interface IJudge {
bool Pass(JudgeEvent ev, float time, Identifier[] ids, int depth);
void UpdateScore(ScoreOperation op, PdtExpression exp);
}