Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrail committed Feb 6, 2019
1 parent fd3131e commit 550fa4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/controller/Game.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ sap.ui.define([
"sap/ui/core/mvc/Controller",
"sap/m/MessageToast",
"webar-test/assets/ArAssets"
], function(Controller, MessageToast, ArAssets) {
], function (Controller, MessageToast, ArAssets) {
"use strict";

return Controller.extend("webar-test.controller.Game", {
onInit: function() {
onInit: function () {
this.arView = this.byId("arView");
this.assets = new ArAssets();
},

shoot: function() {
shoot: function () {
MessageToast.show("Please implement me...");
}
});
Expand Down

0 comments on commit 550fa4b

Please sign in to comment.