12 lines
316 B
C#
12 lines
316 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class MapPlacerItem : MonoBehaviour
|
||
|
|
{
|
||
|
|
public HomeMapSO.RoomType roomType;
|
||
|
|
public List<Vector2Int> placeholderPositionList;
|
||
|
|
|
||
|
|
|
||
|
|
public List<Vector2Int> m_recv_get_placeholder_position_list() => placeholderPositionList;
|
||
|
|
}
|