forked from BilalY/Rasagar
14 lines
205 B
C#
14 lines
205 B
C#
|
using System;
|
||
|
using NUnit.Framework;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.TestTools;
|
||
|
|
||
|
class VisualEffectGraphEditorTests
|
||
|
{
|
||
|
[Test]
|
||
|
public void DummyTest()
|
||
|
{
|
||
|
Assert.IsTrue(true);
|
||
|
}
|
||
|
}
|