aboutsummaryrefslogtreecommitdiff
path: root/lib/components/triple_frequency.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-05-06 22:28:48 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2024-05-06 22:28:48 +0200
commit5f6ef99eae91f53239f08143cead1249893fef81 (patch)
treefac495ea31140060ccd0b916897bbd7adf72fc2f /lib/components/triple_frequency.js
Initial commit
Diffstat (limited to 'lib/components/triple_frequency.js')
-rw-r--r--lib/components/triple_frequency.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/components/triple_frequency.js b/lib/components/triple_frequency.js
new file mode 100644
index 0000000..aa768e3
--- /dev/null
+++ b/lib/components/triple_frequency.js
@@ -0,0 +1,12 @@
+import { Component } from '@serpentity/serpentity';
+
+export default class TripleFrequency extends Component {
+ constructor(config) {
+
+ super(config);
+
+ this.a = Math.random();
+ this.b = Math.random();
+ this.c = Math.random();
+ }
+};