diff --git a/game.js b/game.js index 588a7f7..1c706cf 100644 --- a/game.js +++ b/game.js @@ -1,4 +1,13 @@ 'use strict'; +/*! + * Pacman - HTML5 Game + * https://passer-by.com/pacman/ + * + * Copyright (c) 2016-present, HaoLe Zheng + * Released under the MIT License. + * https://github.com/mumuy/pacman/blob/master/LICENSE +*/ + /* * 小型游戏引擎 */ diff --git a/index.html b/index.html index ce7fbfc..e0ea91e 100644 --- a/index.html +++ b/index.html @@ -47,7 +47,7 @@
如果你对此感兴趣,可以在Github上关注此项目。我希望能通过游戏和代码与你分享一些我对游戏开发的感悟。
diff --git a/index.js b/index.js index 59b1b78..ae91ae8 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,12 @@ +/*! + * Pacman - HTML5 Game + * https://passer-by.com/pacman/ + * + * Copyright (c) 2016-present, HaoLe Zheng + * Released under the MIT License. + * https://github.com/mumuy/pacman/blob/master/LICENSE +*/ + //主程序,业务逻辑 (function(){ var _COIGIG = [ //关卡 @@ -1039,4 +1048,4 @@ }); })(); game.init(); -})(); +})(); \ No newline at end of file