16 lines
132 B
C#
16 lines
132 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Model
|
||
|
{
|
||
|
public class Corner
|
||
|
{
|
||
|
public Vector2 pos;
|
||
|
|
||
|
public Corner ()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|