8 lines
171 B
C#
8 lines
171 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class DecalManager : MonoBehaviour
|
|
{
|
|
public List<DecalDefinition> Decals = new List<DecalDefinition>();
|
|
}
|