SymbolicVisualHelper.ts 341 B

123456789101112131415161718
  1. module Sandbox {
  2. export class SymbolicVisualHelper {
  3. public render() {
  4. if (this.renderLight) {
  5. }
  6. if (this.renderManipulator) {
  7. }
  8. }
  9. public renderLight: boolean;
  10. public renderManipulator: boolean;
  11. }
  12. }