propertyLedger.ts 432 B

12345678910
  1. import { ComponentClass } from 'react';
  2. import { IPropertyComponentProps } from './properties/propertyComponentProps';
  3. import { SliderPropertyTabComponent } from './properties/sliderGuiPropertyComponent';
  4. export class PropertyGuiLedger {
  5. public static RegisteredControls: {[key: string] : ComponentClass<IPropertyComponentProps>} = {};
  6. }
  7. PropertyGuiLedger.RegisteredControls["Slider"] = SliderPropertyTabComponent;