Projektdateien hinzufügen.

This commit is contained in:
Maxime Vorwerk
2023-07-19 18:25:21 +02:00
parent ef547f0924
commit c5bf09836f
6 changed files with 280 additions and 0 deletions

12
AssembledObject.cs Normal file
View File

@@ -0,0 +1,12 @@
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;
}
}