Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 58x | import { Context } from "../context";
import { DrawHelper } from "../draw-helper";
import { PlayCanvasCamera } from "./playcanvas/camera";
/**
* Contains various functions that expose PlayCanvas objects
*/
export class PlayCanvas {
public camera: PlayCanvasCamera;
constructor(
private readonly context: Context,
private readonly drawHelper: DrawHelper
) {
this.camera = new PlayCanvasCamera(this.context);
}
}
|