| 1234567891011121314151617181920212223242526272829 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #include <AnKi/Util/INotify.h>
- namespace anki
- {
- Error INotify::initInternal()
- {
- // TODO
- return Error::NONE;
- }
- void INotify::destroyInternal()
- {
- // TODO
- }
- Error INotify::pollEvents(Bool& modified)
- {
- // TODO
- modified = false;
- return Error::NONE;
- }
- } // end namespace anki
|