WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Tests/Runtime/TestObject2.cs

17 lines
367 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
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;
}
}
}