Improved file structure
This commit is contained in:
7
client/ui/chat/ChatBox.gd
Normal file
7
client/ui/chat/ChatBox.gd
Normal file
@ -0,0 +1,7 @@
|
||||
extends RichTextLabel
|
||||
|
||||
func _ready():
|
||||
owner.message_received.connect(on_message_received)
|
||||
|
||||
func on_message_received(bbcode: String):
|
||||
append_text(bbcode + "\n")
|
Reference in New Issue
Block a user