Window.title - multiple declarations
Function Window.title
Wraps SDL_GetWindowTitle
which gets the shown title of the window
string title() @property @trusted const;
Returns
title string
of the window
Function Window.title
Wraps SDL_SetWindowTitle
which sets a new title to the window
void title
(
string newTitle
) @property @trusted;
Parameters
Name | Description |
---|---|
newTitle | string of the new title |