mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-07 19:06:39 +00:00
Add missing file in 67eeac8045
This commit is contained in:
parent
9c319e46ac
commit
565057cf77
24
src/app/ui/timeline/timeline_observer.h
Normal file
24
src/app/ui/timeline/timeline_observer.h
Normal 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
|
Loading…
Reference in New Issue
Block a user