예제 #1
0
파일: LGame.cs 프로젝트: zhangxin8105/LGame
 protected void InitProcess(LGame game)
 {
     _base = game;
     if (_base == null && _platform != null)
     {
         _base = _platform.GetGame();
     }
     processImpl = new LProcess(game);
     Log().Debug("The Loon Game Engine is Begin");
 }
예제 #2
0
 public TouchPort(LProcess outer)
 {
     this.outer = outer;
 }
예제 #3
0
 public ButtonPort(LProcess outer)
 {
     this.outer = outer;
 }
예제 #4
0
 public StatusPort(LProcess outer)
 {
     this.outer = outer;
 }
예제 #5
0
 public KeyPort(LProcess outerInstance)
 {
     this.outerInstance = outerInstance;
 }
예제 #6
0
 public RealtimeProcessImpl(LProcess outerInstance, loon.Screen screen)
 {
     this.outerInstance = outerInstance;
     this.screen        = screen;
 }