Inheritance: System.Windows.Interop.HwndHost
Example #1
0
        public GameSurface(GraphicsDevice device, SharpDXHost host)
        {
            m_device = device;
            m_host = host;

            this.Views = new List<GameSurfaceView>();
        }
Example #2
0
        public GameSurface(GraphicsDevice device, SharpDXHost host)
        {
            m_device = device;
            m_host   = host;

            this.Views = new List <GameSurfaceView>();
        }
        public MousePositionService(MyGame game, SharpDXHost control, GameSurfaceView surfaceView)
        {
            m_game = game;
            m_control = control;
            m_surfaceView = surfaceView;

            //m_control.MouseMove += OnMouseMove;
            //m_control.MouseLeave += OnMouseLeave;
        }
Example #4
0
        public MousePositionService(MyGame game, SharpDXHost control, GameSurfaceView surfaceView)
        {
            m_game        = game;
            m_control     = control;
            m_surfaceView = surfaceView;

            //m_control.MouseMove += OnMouseMove;
            //m_control.MouseLeave += OnMouseLeave;
        }
 public SelectionService(MyGame game, SharpDXHost control, Camera camera)
 {
     m_game    = game;
     m_control = control;
 }
Example #6
0
 public SelectionService(MyGame game, SharpDXHost control, Camera camera)
 {
     m_game = game;
     m_control = control;
 }
Example #7
0
 public CursorService(MyGame game, SharpDXHost control)
 {
     m_game = game;
     m_control = control;
 }
Example #8
0
 public CursorService(MyGame game, SharpDXHost control)
 {
     m_game    = game;
     m_control = control;
 }