Firstborn/Library/PackageCache/com.unity.addressables@1.19.19/Tests/Runtime/TestObject2.cs

17 lines
367 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEngine.AddressableAssets.Tests
{
public class TestObject2 : ScriptableObject
{
static public TestObject2 Create(string name)
{
var so = CreateInstance<TestObject2>();
so.name = name;
return so;
}
}
}