summaryrefslogtreecommitdiff
path: root/src/components/component.js
blob: be59367719203e49644835f1d9bb518f67274215 (plain)
1
2
3
4
5
6
7
8
game.components = {};

game.Component = (name, spec) => {
  return {
    name,
    ...spec
  }
};