From dfe714044d7f6e10c08d41b349466c52587462a9 Mon Sep 17 00:00:00 2001 From: patrick_pluto Date: Fri, 2 Aug 2024 22:38:08 +0200 Subject: [PATCH] Computer Fixin --- scripts/computer.gd | 8 ++++++++ scripts/create.gd | 8 ++++++++ scripts/game.gd | 8 ++++++++ scripts/join.gd | 8 ++++++++ scripts/main_menu.gd | 8 ++++++++ scripts/movement.gd | 8 ++++++++ scripts/server.gd | 8 ++++++++ 7 files changed, 56 insertions(+) diff --git a/scripts/computer.gd b/scripts/computer.gd index dcab8ea..4e522db 100644 --- a/scripts/computer.gd +++ b/scripts/computer.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends StaticBody3D const TARGET = 100 diff --git a/scripts/create.gd b/scripts/create.gd index 26cacdb..c9b239b 100644 --- a/scripts/create.gd +++ b/scripts/create.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends Control diff --git a/scripts/game.gd b/scripts/game.gd index 64db95b..3614a79 100644 --- a/scripts/game.gd +++ b/scripts/game.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends Node var computers = 0 diff --git a/scripts/join.gd b/scripts/join.gd index 17b00dd..a1fecfa 100644 --- a/scripts/join.gd +++ b/scripts/join.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends Control diff --git a/scripts/main_menu.gd b/scripts/main_menu.gd index 9f204a6..7cefd0a 100644 --- a/scripts/main_menu.gd +++ b/scripts/main_menu.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends Control diff --git a/scripts/movement.gd b/scripts/movement.gd index 3835ff2..f37386d 100644 --- a/scripts/movement.gd +++ b/scripts/movement.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends CharacterBody3D diff --git a/scripts/server.gd b/scripts/server.gd index c3b8e31..f8e32b7 100644 --- a/scripts/server.gd +++ b/scripts/server.gd @@ -1,3 +1,11 @@ +## Copyright (C) 2024 Patrick_Pluto +## +## This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. +## +## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License along with this program. If not, see . + extends Node const DEFAULT_SERVER_IP = "127.0.0.1"