14 lines
246 B
GDScript3
14 lines
246 B
GDScript3
|
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
|