mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 05:35:41 +00:00
11 lines
183 B
C#
11 lines
183 B
C#
namespace X10D.Unity.Tests
|
|
{
|
|
internal sealed class TestBehaviour : Singleton<TestBehaviour>
|
|
{
|
|
public bool Flag
|
|
{
|
|
get => true;
|
|
}
|
|
}
|
|
}
|