Skip to content

Instantly share code, notes, and snippets.

@RSamaium
Created September 24, 2022 13:28
Show Gist options
  • Save RSamaium/256c22e814775ed6e7537cdbc2a15079 to your computer and use it in GitHub Desktop.
Save RSamaium/256c22e814775ed6e7537cdbc2a15079 to your computer and use it in GitHub Desktop.
add prompt in gui array
import { RpgClient, RpgModule, RpgSceneMap } from '@rpgjs/client'
import { Characters } from './characters/characters';
import { MapTilesets } from './maps/map';
import prompt from './gui/prompt.vue'
@RpgModule<RpgClient>({
spritesheets: [
MapTilesets,
Characters
],
gui: [
prompt
]
})
export default class RpgClientEngine {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment