21 lines
380 B
Plaintext
21 lines
380 B
Plaintext
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
namespace UdonSharp.Tests
|
|
{
|
|
[AddComponentMenu("Udon Sharp/Tests/<TemplateClassName>")]
|
|
public class <TemplateClassName> : UdonSharpBehaviour
|
|
{
|
|
[System.NonSerialized]
|
|
public IntegrationTestSuite tester;
|
|
|
|
public void ExecuteTests()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|