aboutsummaryrefslogtreecommitdiff
path: root/captain/launch.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2021-04-01 11:38:06 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2021-04-01 11:38:06 -0400
commitaf084b8acb5ed7e883e422c4626a596eb32fba25 (patch)
tree323cb1c5c0de5ad919d0c932718efaff14a5566b /captain/launch.f90
parent9d19023f554dee7d8656a18dd81479decc03b3ee (diff)
downloadlevitating-af084b8acb5ed7e883e422c4626a596eb32fba25.tar.gz
levitating-af084b8acb5ed7e883e422c4626a596eb32fba25.zip
Added support for viewing individual instruction pages, assigning players, and launching instruction jobs
Diffstat (limited to 'captain/launch.f90')
-rw-r--r--captain/launch.f9014
1 files changed, 14 insertions, 0 deletions
diff --git a/captain/launch.f90 b/captain/launch.f90
new file mode 100644
index 0000000..97e0a59
--- /dev/null
+++ b/captain/launch.f90
@@ -0,0 +1,14 @@
+module remote_launch
+implicit none
+
+contains
+
+ subroutine launch_instructions_on_player(instruction, player)
+ implicit none
+
+ character(*), intent(in)::instruction, player
+
+ end subroutine launch_instructions_on_player
+
+
+end module remote_launch \ No newline at end of file