Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow same action name on diffrent ActionClasses
without this there can be for example only one action named 'update'. with this you can have multiple ActionClasses with same actions. class UserActions { constructor() { this.generateActions('update'); } } module.exports = alt.createActions(UserActions); class LinkActions { constructor() { this.generateActions('update'); } } module.exports = alt.createActions(LinkActions);
- Loading branch information