﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;

namespace CustomTimeline
{
    public class SlowMotionEvent_Example : SlowMotionCondition
    {
        public bool checkTemp;
        public override bool GetEventCondition()
        {
            return checkTemp;
        }
    }
}