forked from BilalY/Rasagar
13 lines
249 B
C#
13 lines
249 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.Experimental.VFX.Utility
|
|
{
|
|
class PointCache : ScriptableObject
|
|
{
|
|
public int PointCount;
|
|
public Texture[] surfaces;
|
|
}
|
|
}
|