projectEli/Assets/NeoFPS/Core/MotionGraphs/EnvironmentElements/ILadder.cs

22 lines
463 B
C#
Raw Normal View History

2022-11-07 01:28:33 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NeoFPS
{
public interface ILadder
{
Transform localTransform { get; }
Collider boxCollider { get; }
Vector3 top { get; }
Vector3 worldTop { get; }
float spacing { get; }
float length { get; }
float width { get; }
Vector3 up { get; }
Vector3 forward { get; }
Vector3 across { get; }
}
}