Files
lovedos/doc/files.md

33 lines
1.5 KiB
Markdown
Raw Normal View History

2014-06-13 21:01:19 +01:00
# LoveDOS files
A brief overview of each file and directory which makes up the LoveDOS source
code.
File | Description
------------------|------------------------------------------------------------
main.c | The entry point, initialises everything
2014-06-23 20:13:53 +01:00
vga.h | Function prototypes for initing / deiniting vga mode 13h
2014-06-13 21:01:19 +01:00
vga.c | Functions for initing / deiniting vga mode 13h
palette.h | Function prototypes for palette handling
palette.c | Functions for palette handling
2014-06-13 21:01:19 +01:00
luaobj.h | Helper function prototypes for lua udata objects
luaobj.c | Helper functions for lua udata objects
love.c | The core `love` module
system.c | `love.system` module
timer.c | `love.timer` module
graphics.c | `love.graphics` module
2016-09-29 20:37:34 +01:00
filesystem.h | `love.filesystem` prototype and typedefs
filesystem.c | `love.filesystem` module and filesystem functions
2014-06-13 21:01:19 +01:00
keyboard.h | `love.keyboard` prototype and typedefs
keyboard.c | `love.keyboard` module and keyboard interrupt handling
mouse.h | `love.mouse` prototype and typedefs
mouse.c | `love.mouse` module and mouse handling
2014-06-13 21:01:19 +01:00
image.h | `Image` object prototypes and typedefs
image.c | `Image` object
quad.h | `Quad` object prototypes and typedefs
quad.c | `Quad` object
font.h | `Font` object prototypes and typedefs
font.c | `Font` object
lib/ | Libraries
2016-09-29 20:37:34 +01:00
embed/ | Embedded scripts and files