예제 #1
0
        public TouchTestScreen(GLGame game) : base(game)
        {
            m_GLGraphics = game.GetGLGraphics();
            m_Camera     = new Camera2D(game.GetGLGraphics(), FRUSTRUM_WIDTH, FRUSTRUM_HEIGHT);

            m_AnimationSample = new AnimationSample();

            Setup();
        }
예제 #2
0
        public Texture(GLGame glGame, string fileName)
        {
            this.m_GLGraphics = glGame.GetGLGraphics();
            this.m_FileName   = fileName;

            Load();
        }
예제 #3
0
 public StaticLinkTestScreen(GLGame game) : base(game)
 {
     m_GLGraphics = game.GetGLGraphics();
 }