diff --git a/__init__.py b/__init__.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..284626359ec527ac4e1dc3e6333c46d3210d6d48 100644
--- a/__init__.py
+++ b/__init__.py
@@ -0,0 +1,12 @@
+"""
+Project base importing definitions.
+"""
+
+# Import files/values we want to be available to other folders.
+from .resources import *
+
+
+# Define imports when using the * flag on this folder.
+__all__ = [
+    'Simplex',
+]
diff --git a/resources/__init__.py b/resources/__init__.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..dfc7208986f2c0c289424af5d03037bad7044dd8 100644
--- a/resources/__init__.py
+++ b/resources/__init__.py
@@ -0,0 +1,12 @@
+"""
+"Resources" folder importing definitions.
+"""
+
+# Import files/values we want to be available to other folders.
+from .simplex import *
+
+
+# Define imports when using the * flag on this folder.
+__all__ = [
+    'Simplex',
+]
diff --git a/resources/simplex/__init__.py b/resources/simplex/__init__.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..f59ce78bc621edfda67ee8681d2702217aaa275a 100644
--- a/resources/simplex/__init__.py
+++ b/resources/simplex/__init__.py
@@ -0,0 +1,12 @@
+"""
+"Simplex" folder importing definitions.
+"""
+
+# Import files/values we want to be available to other folders.
+from .base import SimplexBase as Simplex
+
+
+# Define imports when using the * flag on this folder.
+__all__ = [
+    'Simplex',
+]