Client/scripts/channel/matchmaking/match_found_message.gd
Kevin Schmidt b1c2dd4eb5
All checks were successful
Quality Check / Linting (push) Successful in 7s
TD-18: Setup Matchmaking
2025-03-04 15:25:27 +01:00

13 lines
246 B
GDScript

class_name MatchFoundMessage
extends Message
const MESSAGE_ID := "MatchFound"
# gdlint:ignore = class-variable-name
@export var matchId: String
@export var created: int
@export var ttl: int
func get_message_id() -> String:
return MESSAGE_ID