18 lines
455 B
C#
18 lines
455 B
C#
using SLSUtilities.Feedback;
|
|
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame.Effects.Feedback
|
|
{
|
|
public class BloomAction : PostprocessingActionBase
|
|
{
|
|
protected override void TriggerEvent(FeedbackContext context)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
protected override void StopEvent(FeedbackContext context)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |