11 lines
151 B
C#
11 lines
151 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class AddressUI : TextEdit
|
|
{
|
|
public override void _Ready()
|
|
{
|
|
Text = Connection.WS_DEFAULT_ADDRESS;
|
|
}
|
|
}
|