You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
244 B
13 lines
244 B
3 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
public class LineMessage : MonoBehaviour {
|
||
|
public Vector3 beginP;
|
||
|
public Vector3 endP;
|
||
|
public void SetPos(Vector3 p1,Vector3 p2)
|
||
|
{
|
||
|
beginP = p1;
|
||
|
endP = p2;
|
||
|
}
|
||
|
}
|