AkiraPixelWind/Assets/Scripts/Main/Definition/ConstClass.cs

10 lines
232 B
C#
Raw Normal View History

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);
}