BasicMessage

- Added `setText(string)`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-09 12:09:30 +02:00
parent fbada61e90
commit 6e48960022
1 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,16 @@ public class BasicMessage : Message
this.level = level;
}
this()
{
}
public void setText(string text)
{
this.text = text;
}
public string getText()
{
return this.text;