scene.d 225 B

1234567891011121314
  1. module three.scene;
  2. import three.common;
  3. import three.mesh;
  4. struct Scene {
  5. }
  6. void construct(out Scene scene) pure @safe nothrow @nogc {
  7. }
  8. void destruct(ref Scene scene) pure @safe nothrow @nogc {
  9. scene = Scene.init;
  10. }