11 lines
241 B
C#
11 lines
241 B
C#
using System;
|
|
using UnityEditor.AddressableAssets.Settings;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.AddressableAssets.Tests
|
|
{
|
|
class CustomTestSchema : AddressableAssetGroupSchema
|
|
{
|
|
public string customField = null;
|
|
}
|
|
}
|