7 lines
129 B
C#
7 lines
129 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
[Serializable]
|
||
|
public class TransformEvent : UnityEvent<Transform>
|
||
|
{}
|