diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-05-08 17:58:05 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-05-08 17:58:05 +0200 |
| commit | 2b9badac1345c865c34097bc5d1699329b53fdc8 (patch) | |
| tree | e9db2b722d116b937330eb02056901226e987a61 /lib/nodes/phased.js | |
| parent | 3a88e11079e5e331a10ed35ffdd67d8f3a790d23 (diff) | |
Add phase
Diffstat (limited to 'lib/nodes/phased.js')
| -rw-r--r-- | lib/nodes/phased.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/nodes/phased.js b/lib/nodes/phased.js new file mode 100644 index 0000000..050425d --- /dev/null +++ b/lib/nodes/phased.js @@ -0,0 +1,7 @@ +import TriplePhase from '../components/triple_phase'; +import { Node } from '@serpentity/serpentity'; + +export default class Phased extends Node {}; +Phased.types = { + phase: TriplePhase +} |