Initial implementation of search, updated PacketHandler to behave more more like android app

This commit is contained in:
2021-01-30 21:27:16 -06:00
parent 8659bdfe4a
commit 4e9d3c0759
5 changed files with 366 additions and 37 deletions

View File

@@ -47,6 +47,8 @@ require_relative "lib/tacnet/server"
# Thread.abort_on_exception = true
USE_REDESIGN = ARGV.include?("--redesign")
if not defined?(Ocra)
TAC::Window.new(width: (Gosu.screen_width * 0.8).round, height: (Gosu.screen_height * 0.8).round, resizable: true, borderless: true).show
TAC::Window.new(width: (Gosu.screen_width * 0.8).round, height: (Gosu.screen_height * 0.8).round, resizable: true, borderless: USE_REDESIGN).show
end