aboutsummaryrefslogtreecommitdiff
path: root/captain/launch.f90
blob: 97e0a5960545011764782ab34741a9d430a04054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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