15 lines
183 B
Go
Raw Normal View History

2021-10-10 21:03:57 +02:00
package delegates
import (
"unsafe"
)
type ModifyGraphWithDelegater interface {
ModifyGraphWithDelegate(Delegater)
}
type Delegater interface {
Delete()
Ptr() unsafe.Pointer
}