bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/e2dGeneratorPeak.cs
2024-02-24 22:40:44 -05:00

13 lines
184 B
C#

using System;
using UnityEngine;
[Serializable]
public class e2dGeneratorPeak
{
public Vector2 position;
public e2dGeneratorPeak(Vector2 _position)
{
position = _position;
}
}