This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "game-name": "Dolphin", | |
| "asset-path": "http://localhost:5000/dolphin/assets/", | |
| "assets": { | |
| "art": [ | |
| "background_img.png", | |
| "messagebar_img.png", | |
| "trayBack_img.png", | |
| "close_up_btn.png", | |
| "close_down_btn.png", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.wincity.lib.air.slots.gamewrapper | |
| { | |
| import com.wincity.lib.air.facebook.FacebookWrapper; | |
| import com.wincity.lib.air.slots.SlotsConfigData; | |
| import com.wincity.lib.air.slots.consts.GameTypeConstants; | |
| import com.wincity.lib.air.slots.gamewrapper.BADAGameWrapper; | |
| import com.wincity.lib.air.slots.gamewrapper.CozyGameWrapper; | |
| import com.wincity.lib.air.slots.gamewrapper.IGameWrapper; | |
| import com.wincity.lib.air.slots.manager.CLobbyManager; | |
| import com.wincity.lib.air.slots.manager.CSlotController; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.wincity.lib.air.slots.gamewrapper | |
| { | |
| import flash.display.Stage; | |
| import mx.core.UIComponent; | |
| public interface IGameWrapper | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function track(evt, p) { | |
| if (Ti.Network.online) { | |
| var track = {}; | |
| var props = {}; | |
| track.event = evt; | |
| props.ip = Ti.Platform.id; | |
| props.token = Ti.App.MIXPANEL; | |
| props.time = Ti.App.date.getTime(); | |
| for (var key in p) { | |
| props[key] = p[key]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .mouse{ | |
| position: absolute; | |
| background-image: url('../images/cursor.png'); | |
| width: 15px; | |
| height: 22px; | |
| z-index: 100; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| import org.osflash.signals.Signal; | |
| import flash.display.MovieClip; | |
| import flash.events.Event; | |
| import flash.utils.getDefinitionByName; | |
| /** | |
| * The EnterFrameDispatcher is injected into the Main class through the [Frame] MetaData tag. |
NewerOlder