Skip to content

Instantly share code, notes, and snippets.

@goatslacker
Created May 1, 2015 23:48
Show Gist options
  • Save goatslacker/dbff77fe01a4cc38288d to your computer and use it in GitHub Desktop.
Save goatslacker/dbff77fe01a4cc38288d to your computer and use it in GitHub Desktop.
class XStore {
static displayName = 'XStore'
constructor() {
this.foo = 'bar'
this.exportPublicMethods({
getFoo: _ => this.foo
})
}
}
alt.createStore(XStore).getFoo() === 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment