EngineEvents.h 349 B

123456789101112131415161718
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. #include "../Core/Object.h"
  5. namespace Urho3D
  6. {
  7. /// A command has been entered on the console.
  8. URHO3D_EVENT(E_CONSOLECOMMAND, ConsoleCommand)
  9. {
  10. URHO3D_PARAM(P_COMMAND, Command); // String
  11. URHO3D_PARAM(P_ID, Id); // String
  12. }
  13. }