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