|
| 1 | +// export by github.com/goplus/ixgo/cmd/qexp |
| 2 | + |
| 3 | +package spx |
| 4 | + |
| 5 | +import ( |
| 6 | + q "github.com/goplus/spx/v2/pkg/spx" |
| 7 | + |
| 8 | + "reflect" |
| 9 | + |
| 10 | + "github.com/goplus/ixgo" |
| 11 | +) |
| 12 | + |
| 13 | +func init() { |
| 14 | + ixgo.RegisterPackage(&ixgo.Package{ |
| 15 | + Name: "spx", |
| 16 | + Path: "github.com/goplus/spx/v2/pkg/spx", |
| 17 | + Deps: map[string]string{ |
| 18 | + "github.com/goplus/spx/v2/internal/engine": "engine", |
| 19 | + "sync/atomic": "atomic", |
| 20 | + "time": "time", |
| 21 | + }, |
| 22 | + Interfaces: map[string]reflect.Type{}, |
| 23 | + NamedTypes: map[string]reflect.Type{}, |
| 24 | + AliasTypes: map[string]reflect.Type{}, |
| 25 | + Vars: map[string]reflect.Value{}, |
| 26 | + Funcs: map[string]reflect.Value{ |
| 27 | + "Execute": reflect.ValueOf(q.Execute), |
| 28 | + "ExecuteNative": reflect.ValueOf(q.ExecuteNative), |
| 29 | + "Go": reflect.ValueOf(q.Go), |
| 30 | + "IsAbortThreadError": reflect.ValueOf(q.IsAbortThreadError), |
| 31 | + "IsInCoroutine": reflect.ValueOf(q.IsInCoroutine), |
| 32 | + "Wait": reflect.ValueOf(q.Wait), |
| 33 | + "WaitNextFrame": reflect.ValueOf(q.WaitNextFrame), |
| 34 | + }, |
| 35 | + TypedConsts: map[string]ixgo.TypedConst{}, |
| 36 | + UntypedConsts: map[string]ixgo.UntypedConst{}, |
| 37 | + }) |
| 38 | +} |
0 commit comments