mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 07:55:43 +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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|