first commit
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="Line.cs" company="Exit Games GmbH">
|
||||
// Part of: Photon Unity Networking Demos
|
||||
// </copyright>
|
||||
// <summary>
|
||||
// Original: http://catlikecoding.com/unity/tutorials/curves-and-splines/
|
||||
// Used in SlotRacer Demo
|
||||
// </summary>
|
||||
// <author>developer@exitgames.com</author>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace Photon.Pun.Demo.SlotRacer.Utils
|
||||
{
|
||||
public class Line : MonoBehaviour {
|
||||
public Vector3 p0, p1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user