We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's see an example.
Here is content of Foo.gmx:
var ( Bar Bar ) func onStart() { Bar.clone() }
Here is content of Bar.spx:
var ( level int ) func onStart() { level = 1 }
The text was updated successfully, but these errors were encountered:
import spx "github.com/goplus/spx" type Foo struct { spx.Game Bar Bar } func (p *Foo) OnStart() { p.Bar.Clone() } type Bar struct { spx.Sprite *Foo level int } func (p *Bar) OnStart() { p.level = 1 }
Sorry, something went wrong.
https://github.com/goplus/gop/releases/tag/v1.0.0-beta5
No branches or pull requests
Let's see an example.
Here is content of Foo.gmx:
Here is content of Bar.spx:
The text was updated successfully, but these errors were encountered: