Prune code.

This commit is contained in:
2022-09-30 18:19:19 +08:00
parent e8e36b83bd
commit cd4ea557c3
41 changed files with 22 additions and 3592 deletions

View File

@@ -1,10 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using Cryville.Common;
using Cryville.Crtr.Components;
using Cryville.Crtr.Event;
namespace Cryville.Crtr {
public class StampedEvent : IComparable<StampedEvent> {
@@ -81,11 +77,6 @@ namespace Cryville.Crtr {
if (u != 0) return u;
u = cmpExtra(other);
if (u != 0) return u;
/*if (this.Event != null && other.Event != null)
if (table.ContainsKey(this.Event) && table.ContainsKey(other.Event)) {
u = table[this.Event].Depth.CompareTo(table[other.Event].Depth);
if (u != 0) return u;
}*/
return GetHashCode().CompareTo(other.GetHashCode());
}