From 23fd47d24582115bcab29b2ea7be407cd50f6073 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Thu, 24 Sep 2015 03:22:38 +0300 Subject: [PATCH] Update init.lua --- Applications/init.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Applications/init.lua b/Applications/init.lua index 1760b42b..af0d15c5 100644 --- a/Applications/init.lua +++ b/Applications/init.lua @@ -195,14 +195,18 @@ local function motd() end end ---Загружаем самые нужные апишки +--Загружаем необходимые библиотеки, дабы избежать потерей памяти _G._OSLANGUAGE = require("System/OS/Language") _G.ecs = require("ECSAPI") _G.config = require("config") +_G.context = require("context") _G.image = require("image") _G.fs = require("filesystem") _G.shell = require("shell") -local component = require("component") +_G.component = require("component") +_G.unicode = require("unicode") +_G.keyboard = require("keyboard") +_G.computer = require("computer") --Oткрываем порт для беспороводных MineOS-соединений if component.isAvailable("modem") then component.modem.open(512) end