summaryrefslogtreecommitdiff
path: root/ch.sycoforge.Decal.Demo/ProxyRegister.cs
blob: 1a171bf1d45506ea3d944e1c1708121331c222b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using UnityEngine;

namespace ch.sycoforge.Decal.Demo;

public class ProxyRegister : MonoBehaviour
{
	public StaticProxyCollection ProxyCollection;

	private void Start()
	{
		EasyDecal.SetStaticProxyCollection(ProxyCollection);
	}
}