template_component.js 169 B

1234567891011121314151617
  1. "atomic component";
  2. var component = function (self) {
  3. self.start = function() {
  4. }
  5. self.update = function(timeStep) {
  6. }
  7. }
  8. exports.component = component;