Add missing file in 67eeac8045

This commit is contained in:
David Capello 2021-04-07 18:51:48 -03:00
parent 9c319e46ac
commit 565057cf77

View File

@ -0,0 +1,24 @@
// Aseprite
// Copyright (C) 2021 Igara Studio S.A.
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_UI_TIMELINE_TIMELINE_OBSERVER_H_INCLUDED
#define APP_UI_TIMELINE_TIMELINE_OBSERVER_H_INCLUDED
#pragma once
namespace app {
class Timeline;
class TimelineObserver {
public:
virtual ~TimelineObserver() { }
// Called when the current timeline range is going to change.
virtual void onBeforeRangeChanged(Timeline* timeline) { }
};
} // namespace app
#endif