RendererSupport.hx 358 B

1234567891011121314151617181920
  1. package hide.tools;
  2. class RendererSupport {
  3. public function getS3D() : h3d.scene.Scene {
  4. throw "TODO";
  5. return null;
  6. }
  7. public function lookupShader<T:hxsl.Shader>( current : T, ?passName : String ) : T {
  8. throw "TODO";
  9. return null;
  10. }
  11. public static function get() : RendererSupport {
  12. throw "TODO";
  13. return null;
  14. }
  15. }