Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Game = function(game) {}
  2.  
  3. Game.prototype = {
  4.     preload: function() {
  5.         [...code...]
  6.     },
  7.     create: function() {
  8.         [...code...]
  9.     },
  10.     update: function() {
  11.         [...code...]
  12.     },
  13.     displayPlayer: function(){
  14.         [...code...]
  15.     }
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement