| 1 | // Aseprite |
|---|---|
| 2 | // Copyright (C) 2019 Igara Studio S.A. |
| 3 | // |
| 4 | // This program is distributed under the terms of |
| 5 | // the End-User License Agreement for Aseprite. |
| 6 | |
| 7 | #ifndef APP_APP_MOD_H_INCLUDED |
| 8 | #define APP_APP_MOD_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | namespace app { |
| 12 | class MainWindow; |
| 13 | |
| 14 | class AppMod { |
| 15 | public: |
| 16 | virtual ~AppMod() { } |
| 17 | virtual void modMainWindow(MainWindow* mainWindow) = 0; |
| 18 | }; |
| 19 | |
| 20 | } // namespace app |
| 21 | |
| 22 | #endif |
| 23 |