10 lines
232 B
C#
10 lines
232 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class ConstClass
|
||
|
{
|
||
|
static public Vector3 Angle_RightDir => Vector3.zero;
|
||
|
static public Vector3 Angle_LeftDir = new Vector3(0, 180, 0);
|
||
|
}
|