Encounter / Assets / Scripts / EncounterManagement / EventEncounter.cs
EventEncounter.cs
Raw
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class EventEncounter : Encounter<Event>
{
    public Event Event { get; private set; }

    public EventEncounter(int encounter_Value)
    {

    }
}