using System.Collections.Generic; using UnityEngine; namespace DanieleMarotta.RiversongCodeShowcase { public struct CollectHighlightedGameObjectsSignal { public List GameObjects; public CollectHighlightedGameObjectsSignal(List gameObjects) { GameObjects = gameObjects; } } }