diff options
Diffstat (limited to 'client/scripts/tiles')
-rw-r--r-- | client/scripts/tiles/chair.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/counter.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/counter_base.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/crate.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/cutting_board.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/door.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/floor.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/flour_counter.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/full_tile.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/generic_tile.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/oven.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/raw_steak_crate.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/sink.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/stove.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/table.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/tomato_crate.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/trash.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/wall.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/wall_tile.gd | 15 | ||||
-rw-r--r-- | client/scripts/tiles/window.gd | 15 |
20 files changed, 300 insertions, 0 deletions
diff --git a/client/scripts/tiles/chair.gd b/client/scripts/tiles/chair.gd index dd26a07a..34735fda 100644 --- a/client/scripts/tiles/chair.gd +++ b/client/scripts/tiles/chair.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Chair extends Floor diff --git a/client/scripts/tiles/counter.gd b/client/scripts/tiles/counter.gd index a10f3986..c3032e4f 100644 --- a/client/scripts/tiles/counter.gd +++ b/client/scripts/tiles/counter.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Counter extends FullTile diff --git a/client/scripts/tiles/counter_base.gd b/client/scripts/tiles/counter_base.gd index bf51513e..ebeebb3b 100644 --- a/client/scripts/tiles/counter_base.gd +++ b/client/scripts/tiles/counter_base.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name CounterBase extends Counter diff --git a/client/scripts/tiles/crate.gd b/client/scripts/tiles/crate.gd index 3fe43525..21fae60b 100644 --- a/client/scripts/tiles/crate.gd +++ b/client/scripts/tiles/crate.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Crate extends Counter diff --git a/client/scripts/tiles/cutting_board.gd b/client/scripts/tiles/cutting_board.gd index 7103cb4d..944a7a9f 100644 --- a/client/scripts/tiles/cutting_board.gd +++ b/client/scripts/tiles/cutting_board.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name CuttingBoard extends CounterBase diff --git a/client/scripts/tiles/door.gd b/client/scripts/tiles/door.gd index 7175814d..cfba08b7 100644 --- a/client/scripts/tiles/door.gd +++ b/client/scripts/tiles/door.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Door extends Floor diff --git a/client/scripts/tiles/floor.gd b/client/scripts/tiles/floor.gd index f7c39244..fec68cbd 100644 --- a/client/scripts/tiles/floor.gd +++ b/client/scripts/tiles/floor.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Floor extends Node3D diff --git a/client/scripts/tiles/flour_counter.gd b/client/scripts/tiles/flour_counter.gd index 56dad60f..4bf2b1f3 100644 --- a/client/scripts/tiles/flour_counter.gd +++ b/client/scripts/tiles/flour_counter.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name FlourCounter extends CounterBase diff --git a/client/scripts/tiles/full_tile.gd b/client/scripts/tiles/full_tile.gd index bdcca61c..2da54237 100644 --- a/client/scripts/tiles/full_tile.gd +++ b/client/scripts/tiles/full_tile.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name FullTile extends Floor diff --git a/client/scripts/tiles/generic_tile.gd b/client/scripts/tiles/generic_tile.gd index 23b86a84..f7d1b4a7 100644 --- a/client/scripts/tiles/generic_tile.gd +++ b/client/scripts/tiles/generic_tile.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name GenericTile extends Floor diff --git a/client/scripts/tiles/oven.gd b/client/scripts/tiles/oven.gd index 05909b63..88da3adb 100644 --- a/client/scripts/tiles/oven.gd +++ b/client/scripts/tiles/oven.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Oven extends Counter diff --git a/client/scripts/tiles/raw_steak_crate.gd b/client/scripts/tiles/raw_steak_crate.gd index 3a15b942..8ff93d6b 100644 --- a/client/scripts/tiles/raw_steak_crate.gd +++ b/client/scripts/tiles/raw_steak_crate.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name RawSteakCrate extends Crate diff --git a/client/scripts/tiles/sink.gd b/client/scripts/tiles/sink.gd index 3b9029b6..e4eaff60 100644 --- a/client/scripts/tiles/sink.gd +++ b/client/scripts/tiles/sink.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Sink extends Counter diff --git a/client/scripts/tiles/stove.gd b/client/scripts/tiles/stove.gd index a60209cb..93fad5a3 100644 --- a/client/scripts/tiles/stove.gd +++ b/client/scripts/tiles/stove.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Stove extends Counter diff --git a/client/scripts/tiles/table.gd b/client/scripts/tiles/table.gd index 3e621f46..533223a4 100644 --- a/client/scripts/tiles/table.gd +++ b/client/scripts/tiles/table.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Table extends FullTile diff --git a/client/scripts/tiles/tomato_crate.gd b/client/scripts/tiles/tomato_crate.gd index f19bdd08..078d0ba2 100644 --- a/client/scripts/tiles/tomato_crate.gd +++ b/client/scripts/tiles/tomato_crate.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name TomatoCrate extends Crate diff --git a/client/scripts/tiles/trash.gd b/client/scripts/tiles/trash.gd index c680e72d..fed1a502 100644 --- a/client/scripts/tiles/trash.gd +++ b/client/scripts/tiles/trash.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Trash extends Crate diff --git a/client/scripts/tiles/wall.gd b/client/scripts/tiles/wall.gd index d69d16e9..0201d4d6 100644 --- a/client/scripts/tiles/wall.gd +++ b/client/scripts/tiles/wall.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Wall extends WallTile diff --git a/client/scripts/tiles/wall_tile.gd b/client/scripts/tiles/wall_tile.gd index e51d010d..7c9d4305 100644 --- a/client/scripts/tiles/wall_tile.gd +++ b/client/scripts/tiles/wall_tile.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name WallTile extends FullTile diff --git a/client/scripts/tiles/window.gd b/client/scripts/tiles/window.gd index 7df5e9db..b2926080 100644 --- a/client/scripts/tiles/window.gd +++ b/client/scripts/tiles/window.gd @@ -1,3 +1,18 @@ +# Undercooked - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name WallWindow extends WallTile |