AppState_Benchmark02.h 425 B

1234567891011121314151617181920
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. #include "AppState_Base.h"
  5. class AppState_Benchmark02 : public AppState_Base
  6. {
  7. public:
  8. URHO3D_OBJECT(AppState_Benchmark02, AppState_Base);
  9. public:
  10. AppState_Benchmark02(U3D::Context* context);
  11. void OnEnter() override;
  12. void OnLeave() override;
  13. void HandleSceneUpdate(U3D::StringHash eventType, U3D::VariantMap& eventData);
  14. };