Files
JusticeBeta/Test8/Test8/TestComponent.cs
2026-02-22 21:53:04 -05:00

16 lines
236 B
C#

using Awperative;
namespace AwperativeTest2;
public class TestComponent : Component
{
[Show]
public float TestFloat = 3.14f;
[Show]
public string TestString = "Hello World!";
public bool TestBool = true;
}