mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 12:20:58 +00:00
22 lines
440 B
C++
22 lines
440 B
C++
// Aseprite Scripting Library
|
|
// Copyright (c) 2015 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef SCRIPTING_ENGINE_DELEGATE_H_INCLUDED
|
|
#define SCRIPTING_ENGINE_DELEGATE_H_INCLUDED
|
|
#pragma once
|
|
|
|
namespace scripting {
|
|
|
|
class EngineDelegate {
|
|
public:
|
|
virtual ~EngineDelegate() { }
|
|
virtual void onConsolePrint(const char* text) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|