using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// Interface to implement to allow the use of the Accumulation feature.
///
public interface IAccumulation
{
///
/// Returns the settings of the Accumulation feature.
///
/// AccumulationSettings
AccumulationSettings GetAccumulationSettings();
}