Files
PolyCubeCounting/AssembledObject.cs
2023-07-19 18:25:21 +02:00

13 lines
235 B
C#

using System.Collections;
using System.IO.Hashing;
public class AssembledObject {
private static XxHash32 _hash = new XxHash32();
private BitArray _shape;
public override int GetHashCode() {
return 1;
}
}