about summary refs log tree commit diff
path: root/src/universe.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/universe.py')
-rw-r--r--src/universe.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/universe.py b/src/universe.py
new file mode 100644
index 0000000..a8279ec
--- /dev/null
+++ b/src/universe.py
@@ -0,0 +1,7 @@
+class Universe():
+    def __init__(self, name: str, G: float):
+        self.name = name
+        self.G = G
+        
+    def __str__(self):
+        return "kuu"
\ No newline at end of file