Skip to content
This repository was archived by the owner on Sep 21, 2023. It is now read-only.

Commit 67e3666

Browse files
author
Alexis Huvier
committed
update(demo)
1 parent 234c4a5 commit 67e3666

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Demos/SE_BasicGame/MyScene.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using SharpEngine;
22
using SharpEngine.Math;
3-
using SharpEngine.Utils.Widget;
43
using SharpEngine.Widget;
54

65
namespace SE_BasicWindow;
@@ -9,9 +8,6 @@ internal class MyScene : Scene
98
{
109
public MyScene()
1110
{
12-
AddWidget(new Label(new Vec2(100), "Test Multi\nLine", "basic", centerAllLines: false));
13-
AddWidget(new Label(new Vec2(300, 100), "Test Multi\nLine", "basic", centerAllLines: true));
14-
AddWidget(new Label(new Vec2(100, 500), "Test Multi\nLine", "basic", style: LabelStyle.Strike | LabelStyle.Underline, centerAllLines: false));
15-
AddWidget(new Label(new Vec2(300, 500), "Test Multi\nLine", "basic", style: LabelStyle.Strike | LabelStyle.Underline, centerAllLines: true));
11+
AddWidget(new MultiLineInput(new Vec2(300), "", "basic"));
1612
}
1713
}

0 commit comments

Comments
 (0)