Initial import

This commit is contained in:
2024-05-04 18:05:08 +01:00
commit c94a3fe968
342 changed files with 6018 additions and 0 deletions

12
Paddle/Paddle.gd Normal file
View File

@@ -0,0 +1,12 @@
extends StaticBody2D
class_name Paddle
var width : int :
get:
return $CollisionShape2D.shape.size.x
func _on_input_event(viewport: Node, event: InputEvent, shape_idx: int) -> void:
pass # Replace with function body.
func hit() -> void:
pass