mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 17:19:31 +00:00
abstract is ded
This commit is contained in:
parent
07cc7216a1
commit
42738cc7c9
8 changed files with 219 additions and 135 deletions
8
draw.lua
8
draw.lua
|
|
@ -3,7 +3,7 @@ local uqt = require((...):match("^(.-ubiquitousse)%."))
|
|||
|
||||
--- The drawing functions: everything that affect the display/window.
|
||||
-- The coordinate system used is:
|
||||
--
|
||||
--
|
||||
-- (0,0) +---> (x)
|
||||
-- |
|
||||
-- |
|
||||
|
|
@ -14,9 +14,9 @@ local uqt = require((...):match("^(.-ubiquitousse)%."))
|
|||
local draw
|
||||
draw = {
|
||||
--- Initial game view paramters (some defaults).
|
||||
-- @impl abstract
|
||||
-- @impl ubiquitousse
|
||||
params = {
|
||||
title = "Abstract Engine",
|
||||
title = "Ubiquitousse Game",
|
||||
width = 800,
|
||||
height = 600,
|
||||
resizable = false,
|
||||
|
|
@ -29,7 +29,7 @@ draw = {
|
|||
-- @tparam table params the game parameters
|
||||
-- @usage -- Default values:
|
||||
-- ubiquitousse.init {
|
||||
-- title = "Abstract Engine", -- usually window title
|
||||
-- title = "Ubiquitousse Game", -- usually window title
|
||||
-- width = 800, -- in px
|
||||
-- height = 600, -- in px
|
||||
-- resizable = false, -- can the game be resized?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue