Revise anchor data structure.

This commit is contained in:
2023-01-14 21:34:13 +08:00
parent 4f93995bbd
commit 5e4c53113a
5 changed files with 60 additions and 53 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using CAnchor = Cryville.Crtr.Anchor;
namespace Cryville.Crtr {
public class StampedEvent : IComparable<StampedEvent> {
@@ -29,7 +30,7 @@ namespace Cryville.Crtr {
}
public class Anchor : StampedEvent {
public int Name;
public CAnchor Target;
public override int Priority {
get { return 0; }
}