14 lines
184 B
C#
14 lines
184 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class e2dGeneratorPeak
|
||
|
{
|
||
|
public Vector2 position;
|
||
|
|
||
|
public e2dGeneratorPeak(Vector2 _position)
|
||
|
{
|
||
|
position = _position;
|
||
|
}
|
||
|
}
|