1
1

camera.d 214 B

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