Skip to content

Commit 3536363

Browse files
committed
Added jsdoc blocks
1 parent 84c2486 commit 3536363

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
My thanks to the following for helping with the Phaser 3 Examples, Docs and TypeScript definitions, either by reporting errors, fixing them or helping author the docs:
2323

24-
@sky-coding @G-Rath @S4n60w3n @rootasjey
24+
@sky-coding @G-Rath @S4n60w3n @rootasjey @englercj
2525

2626

2727
## Version 3.16.2 - Ishikawa - 11th February 2019

src/scene/Scene.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,30 @@ var Scene = new Class({
281281
{
282282
}
283283

284+
/**
285+
* Should be overridden by your own Scenes.
286+
*
287+
* @method Phaser.Scene#init
288+
* @override
289+
* @since 3.0.0
290+
*/
291+
292+
/**
293+
* Should be overridden by your own Scenes.
294+
*
295+
* @method Phaser.Scene#preload
296+
* @override
297+
* @since 3.0.0
298+
*/
299+
300+
/**
301+
* Should be overridden by your own Scenes.
302+
*
303+
* @method Phaser.Scene#create
304+
* @override
305+
* @since 3.0.0
306+
*/
307+
284308
});
285309

286310
module.exports = Scene;

0 commit comments

Comments
 (0)