10 lines
291 B
C#
10 lines
291 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
public class CampSceneManager : MonoBehaviour
|
|
{
|
|
[ListDrawerSettings(ShowIndexLabels = true,AlwaysAddDefaultValue = true)]
|
|
public List<GameObject> interactionPoints = new();
|
|
} |