OpenComputerScripts/programs.info

74 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-11-21 11:45:58 +08:00
{
2018-11-21 11:55:45 +08:00
["grab"]={
2018-11-21 11:45:58 +08:00
title="Grab",
info="Grab - Official OpenComputerScripts Installer",
files={
"grab.lua"
}
},
2018-11-21 11:55:45 +08:00
["checkarg"]={
2018-11-21 12:08:25 +08:00
title="Arugment Checker",
2018-11-21 11:45:58 +08:00
info="For easier argument checking",
files={
"checkarg.lua"
}
},
2018-11-21 11:55:45 +08:00
["libevent"]={
2018-11-21 11:45:58 +08:00
title="LibEvent",
info="For easier event processing",
files={
"libevent.lua"
},
requires={
"checkarg"
}
},
2018-11-21 12:08:25 +08:00
["libgpu"]={
title="LibGPU",
info="For easier gpu programming",
files={
"libgpu.lua"
}
},
["simple_data_structure"]={
title="Simple Lua Data Structure",
info="Provides class(...),queue and vector",
files={
"class.lua", "queue.lua", "vector.lua"
}
}
["minesweeper"]={
title="Mine Sweeper",
info="A simple game",
files={
"MineSweeper.lua"
},
requires={
"libgpu","libevent","simple_data_structure"
}
},
2018-11-21 11:55:45 +08:00
["drone"]={
2018-11-21 11:45:58 +08:00
title="Drone",
info="Drone console and bios",
author="Kiritow",
contact="1362060620@qq.com",
files={
"drone_bios.lua",
"drone_console.lua"
},
requires={
"libevent"
}
},
2018-11-21 11:55:45 +08:00
["smartstorage"]={
2018-11-21 11:45:58 +08:00
title="Smart Storage",
info="Smart Storage",
author="Kiritow",
files={
2018-11-21 11:49:05 +08:00
"SmartStorage.lua"
2018-11-21 11:45:58 +08:00
},
requires={
"libevent"
}
}
}