Remote agent/Simulation/Julia: Difference between revisions

Content added Content deleted
m (avoid generating some unwinnable maps)
m (Fixed syntax highlighting.)
Line 2: Line 2:
<br />
<br />
File: RemoteGameServerClient.jl
File: RemoteGameServerClient.jl
<lang julia>module RemoteGameServerClient
<syntaxhighlight lang="julia">module RemoteGameServerClient


using Sockets, Distributed, Colors
using Sockets, Distributed, Colors
Line 288: Line 288:


end # modulino
end # modulino
</syntaxhighlight>
</lang>
File: gtk_remoteserversimulation.jl
File: gtk_remoteserversimulation.jl
<lang julia>using Distributed, Sockets, Gtk, Colors, Graphics, Cairo
<syntaxhighlight lang="julia">using Distributed, Sockets, Gtk, Colors, Graphics, Cairo


include("RemoteGameServerClient.jl")
include("RemoteGameServerClient.jl")
Line 388: Line 388:
end
end


matchballsgameserver()
matchballsgameserver()</syntaxhighlight>
</lang>