13 lines
218 B
GDScript3
13 lines
218 B
GDScript3
|
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
|