Add TimeTimingModel.

This commit is contained in:
2022-12-13 10:51:05 +08:00
parent b582da90e5
commit f5df56687b
2 changed files with 18 additions and 1 deletions

View File

@@ -16,7 +16,12 @@ namespace Cryville.Crtr {
n = _n;
d = _d;
}
public BeatTime(int _n, int _d) {
b = _n / _d;
n = _n % _d;
d = _d;
}
[JsonIgnore]
public int b;