Viewport.cs 354 B

1234567891011
  1. namespace Urho
  2. {
  3. partial class Viewport
  4. {
  5. public Viewport(Scene scene, Camera camera, RenderPath renderPath)
  6. : this(Application.CurrentContext, scene, camera, renderPath) {}
  7. public Viewport(Scene scene, Camera camera, Urho.IntRect rect, RenderPath renderPath)
  8. : this(Application.CurrentContext, scene, camera, rect, renderPath) {}
  9. }
  10. }