From 6e48960022fb037009f6f7b3acafe39c4de04783 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Tue, 9 Apr 2024 12:09:30 +0200 Subject: [PATCH] BasicMessage - Added `setText(string)` --- source/dlog/nu/basic.d | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/dlog/nu/basic.d b/source/dlog/nu/basic.d index f9e167b..1e92ade 100644 --- a/source/dlog/nu/basic.d +++ b/source/dlog/nu/basic.d @@ -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;