16 lines
236 B
C#
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;
|
|
|
|
} |