First implementation

This commit is contained in:
2021-10-10 21:03:57 +02:00
parent f8be309c81
commit 0dfd7a595b
344 changed files with 63911 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package delegates
import (
"unsafe"
)
type ModifyGraphWithDelegater interface {
ModifyGraphWithDelegate(Delegater)
}
type Delegater interface {
Delete()
Ptr() unsafe.Pointer
}