Adding a local player agent
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide run-player-agent)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : Start the graphical polling playback agent.
|
||||
; pre : A graphical desktop is available.
|
||||
; post : The agent remains active until its window is closed.
|
||||
; result : The GUI frame returned by the implementation.
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(define (run-player-agent)
|
||||
((dynamic-require "private/player-agent-gui.rkt"
|
||||
'run-player-agent-gui)))
|
||||
|
||||
(module+ main
|
||||
(run-player-agent))
|
||||
Reference in New Issue
Block a user