mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-07-13 20:00:58 -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;
|
|
}
|
|
} |