mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-08-03 04:21:12 -04:00
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
function getOptions(options) {
|
|
options.add(new RadialOption(RadialItem.ITEM_USE));
|
|
options.add(new RadialOption(RadialItem.EXAMINE));
|
|
}
|
|
|
|
function handleSelection(player, target, selection) {
|
|
switch (selection) {
|
|
case RadialItem.ITEM_USE:
|
|
Log.d("bazaar.js", "Bazaar Selection: ITEM_USE");
|
|
break;
|
|
}
|
|
} |