Client/scripts/channel/matchmaking/match_established_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

14 lines
309 B
GDScript

class_name MatchEstablishedMessage
extends Message
const MESSAGE_ID := "MatchEstablished"
# gdlint:ignore = class-variable-name
@export var matchId: String
# gdlint:ignore = class-variable-name
@export var opponentName: String
@export var token: String
func get_message_id() -> String:
return MESSAGE_ID