using Framework; using Framework.Condition; using System.Collections; using System.Collections.Generic; using UnityEngine; public class ConditionVehicleComponent : ICondition { public EventManager.EventName SignalName => throw new System.NotImplementedException(); public bool Check(List args) { throw new System.NotImplementedException(); } public string[] GetArgLocalizations(List args) { throw new System.NotImplementedException(); } }