Back to project page AllBinary-Platform-Game.
The source code is released under:
AllBinary Open License Version 1.0 Copyright (c) 2011 AllBinary. By agreeing to this license you and any business entity you represent are legally bound to this legal agreement. You may transmit, m...
If you think the Android project AllBinary-Platform-Game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * AllBinary Open License Version 1/*from ww w . j av a 2 s . c om*/ * Copyright (c) 2011 AllBinary * * By agreeing to this license you and any business entity you represent are * legally bound to the AllBinary Open License Version 1 legal agreement. * * You may obtain the AllBinary Open License Version 1 legal agreement from * AllBinary or the root directory of AllBinary's AllBinary Platform repository. * * Created By: Travis Berthelot * */ package org.allbinary.game.testgamedemo.init; import org.allbinary.animation.image.TestGameDemoImageBasedAnimationInterfaceFactoryInterfaceFactory; import org.allbinary.animation.image.TestGameDemoOpenGLESImageBasedAnimationInterfaceFactoryInterfaceFactory; import org.allbinary.animation.FeaturedAnimationInterfaceFactoryInterfaceFactory; import org.allbinary.game.resource.ResourceInitialization; import org.allbinary.input.motion.button.TouchButtonResourceAnimationInterfaceFactoryInterfaceFactory; import org.allbinary.input.motion.button.TouchButtonResourceOpenGLESAnimationInterfaceFactoryInterfaceFactory; public class TestGameDemoJ2MEAnimationInterfaceFactoryResourceInitialization extends ResourceInitialization { public TestGameDemoJ2MEAnimationInterfaceFactoryResourceInitialization() { } public void init() throws Exception //throws Exception { //Normal Loading Here //TWB - TouchButton FeaturedAnimationInterfaceFactoryInterfaceFactory.getInstance().add( new TouchButtonResourceAnimationInterfaceFactoryInterfaceFactory()); FeaturedAnimationInterfaceFactoryInterfaceFactory.getInstance().add( new TestGameDemoImageBasedAnimationInterfaceFactoryInterfaceFactory()); FeaturedAnimationInterfaceFactoryInterfaceFactory.getInstance().add( new TouchButtonResourceOpenGLESAnimationInterfaceFactoryInterfaceFactory()); FeaturedAnimationInterfaceFactoryInterfaceFactory.getInstance().add( new TestGameDemoOpenGLESImageBasedAnimationInterfaceFactoryInterfaceFactory()); } }