14 lines
406 B
Lua
14 lines
406 B
Lua
-- This file is part of SUIT, copyright (c) 2016 Matthias Richter
|
|
|
|
local BASE = (...) .. '.'
|
|
|
|
return {
|
|
core = require(BASE .. 'core'),
|
|
layout = require(BASE .. 'layout'),
|
|
Button = require(BASE .. 'button'),
|
|
ImageButton = require(BASE .. 'imagebutton'),
|
|
Slider = require(BASE .. 'slider'),
|
|
Label = require(BASE .. 'label'),
|
|
Input = require(BASE .. 'input'),
|
|
Checkbox = require(BASE .. 'checkbox')
|
|
}
|