summaryrefslogtreecommitdiff
path: root/src/gobang.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/gobang.go')
-rw-r--r--src/gobang.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gobang.go b/src/gobang.go
index 1826a5f..38ae50a 100644
--- a/src/gobang.go
+++ b/src/gobang.go
@@ -32,6 +32,11 @@ const (
)
+type PairT[A any, B any] struct{
+ L A
+ R B
+}
+
type Gauge struct {
Inc func(...any)
Dec func(...any)