This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
URL="https://linux.kite.com/linux/current/kite-installer" | |
# Exit codes: | |
# 1 - unknown/generic error | |
# 10 - OS unsupported | |
# 12 - no AVX support | |
# 15 - missing dependencies |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--to be at the head of the function. | |
-- so that I can make sure that I'm not respawning something over something that already exists. | |
local object_position = {} | |
for x=0,width do | |
object_position[x] = false | |
ground_x[x] = true | |
coin_x[x] = false | |
end | |
--each time an object is chosen to be shown. change object_position[x] to be true. |