Event.h 384 B

12345678910111213141516171819
  1. /*
  2. * 2D Game Engine
  3. * Event.h:
  4. * Based on pikuma.com 2D game engine in C++ and Lua course
  5. * Copyright (c) 2021 986-Studio. All rights reserved.
  6. *
  7. * Created by Manoël Trapier on 16/02/2021.
  8. */
  9. #ifndef GAMEENGINE_SOURCE_INCLUDE_EVENT_H
  10. #define GAMEENGINE_SOURCE_INCLUDE_EVENT_H
  11. class Event
  12. {
  13. public:
  14. Event() = default;
  15. };
  16. #endif /* GAMEENGINE_SOURCE_INCLUDE_EVENT_H */