Ejemplo n.º 1
0
        public static void Init(PointerToVoidMethod aScreenUpdateEvent, PointerToVoidMethod aGdiDispatch, int width, int height)
        {
            Screen = new GfxSize(width, height);

            mSwapBuffer       = aScreenUpdateEvent;
            mGdiDisptachEvent = aGdiDispatch;
        }
Ejemplo n.º 2
0
 public static void Init(PointerToVoidMethod aScreenUpdateEvent, int width, int height)
 {
     Init(aScreenUpdateEvent, null, width, height);
 }