Started to work on king threats

This commit is contained in:
cdricms
2024-06-28 23:58:26 +02:00
parent 4f5b51f4ae
commit 0a220f14f5
13 changed files with 78 additions and 46 deletions

View File

@@ -0,0 +1,9 @@
extension Set {
static func + (lhs: Set<Element>, rhs: Set<Element>) -> Set<Element> {
return lhs.union(rhs)
}
static func += (lhs: inout Set<Element>, rhs: Set<Element>) {
lhs.formUnion(rhs)
}
}