10 lines
154 B
C#
10 lines
154 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class MaterialTexturePair
|
|
{
|
|
public Material material;
|
|
|
|
public BundleDataObject bundleData;
|
|
}
|