Created
November 8, 2013 03:19
-
-
Save jamesyoung/7365798 to your computer and use it in GitHub Desktop.
This file contains 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 | |
{ | |
function init(gameStage:Stage= null, hudHeight:Number=0, sound:Boolean=true):void; | |
function destruct():void; | |
function loadGameUnit(gameName:String, gameUrl:String=null, gameIndex:Number=0):Boolean; | |
function placeBet():void; | |
function stopAutoSpin():void; | |
function setStageForGame(gameStage:UIComponent):void; | |
function pauseGame():void; | |
function resumeGame():void; | |
function sendBonusOddInformation(level:Number):void; | |
function setAssetPath(assetsPath:String):void; | |
function sendCreditDeltaToGame():void; | |
function mute(isMute:Boolean):void; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment