13 lines
264 B
C#
13 lines
264 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BNG {
|
|||
|
/// <summary>
|
|||
|
/// Designates a collider as invalid for teleportation
|
|||
|
/// </summary>
|
|||
|
///
|
|||
|
public class InvalidTeleportArea : MonoBehaviour { }
|
|||
|
}
|
|||
|
|