23 lines
694 B
Lua
23 lines
694 B
Lua
---------------------------------------------------------------------------
|
|
-- @author Uli Schlachter
|
|
-- @copyright 2010 Uli Schlachter
|
|
-- @release @AWESOME_VERSION@
|
|
-- @module gears
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
return
|
|
{
|
|
color = require("gears.color");
|
|
debug = require("gears.debug");
|
|
object = require("gears.object");
|
|
surface = require("gears.surface");
|
|
wallpaper = require("gears.wallpaper");
|
|
timer = require("gears.timer");
|
|
cache = require("gears.cache");
|
|
matrix = require("gears.matrix");
|
|
shape = require("gears.shape");
|
|
}
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|