13 lines
239 B
GDScript3
13 lines
239 B
GDScript3
|
class_name CurrentUnixTimeMessage
|
||
|
extends Message
|
||
|
|
||
|
const MESSAGE_ID: String = "CurrentUnixTime"
|
||
|
|
||
|
@export var time: int
|
||
|
# gdlint:ignore = class-variable-name
|
||
|
@export var matchId: String
|
||
|
|
||
|
|
||
|
func get_message_id() -> String:
|
||
|
return MESSAGE_ID
|