1
0
Fork 0
space-capture/scenes/player/player.gd

13 lines
218 B
GDScript3
Raw Normal View History

2024-08-06 22:46:05 +02:00
extends Node
class_name Player
@export var color: Color = Color.MAGENTA
@export var icon: Texture2D
func _on_game_start(game: GameLogic) -> void:
pass
func _on_game_tick(game: GameLogic, tick: int) -> void:
pass