Engine 0.0.4
Game engine in lua
Loading...
Searching...
No Matches
encoder.lua
Go to the documentation of this file.
1local function install(std, game, application, library, name)
2 std = std or {}
3 std[name] = {
4 encode=library.encode,
5 decode=library.decode
6 }
7 return {[name]=std[name]}
8end
9
10local P = {
12}
13
14return P
local function decode(in_str, out_table)
local function install(std, game, application, library, name)
local application
Definition main.lua:16
local game
Definition main.lua:17
local std
Definition main.lua:18