The year is 2021.
This commit is contained in:
parent
cb2376a82f
commit
22a1fd4569
14 changed files with 17 additions and 15 deletions
|
@ -1,6 +1,8 @@
|
|||
# Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
#
|
||||
# Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
src = snake-sdl.c collision.c game.c input.c renderer.c
|
||||
inc = extern.h game.h input.h renderer.h screen.h version.h
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
@ -941,7 +941,7 @@ int
|
|||
main(void)
|
||||
{
|
||||
printf("Snake " VERSION "." RELEASE "." PATCH EXTRA "\n"
|
||||
"Copyright (c) 2019-2020, yzrh <yzrh@noema.org>\n");
|
||||
"Copyright (c) 2019-2021, yzrh <yzrh@noema.org>\n");
|
||||
|
||||
if (SDL_Init(SDL_INIT_VIDEO |
|
||||
SDL_INIT_AUDIO |
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
|
||||
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue