forked from BilalY/Rasagar
13 lines
305 B
C#
13 lines
305 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Cinemachine
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Internal container for CinemachineComponentBase. Does nothing but contain.
|
||
|
/// </summary>
|
||
|
[AddComponentMenu("")] // Don't display in add component menu
|
||
|
public sealed class CinemachinePipeline : MonoBehaviour
|
||
|
{
|
||
|
}
|
||
|
}
|