21 lines
323 B
C#
21 lines
323 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class LaserPointer : MonoBehaviour {
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
|
|
Vector3 GetIntersection(){
|
|
Vector3 position = new Vector3(0, 0, 0);
|
|
return position;
|
|
}
|
|
}
|