mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-17 20:32:45 +01:00
21 lines
440 B
C++
21 lines
440 B
C++
// Copyright 2019 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/time/time.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Time {
|
|
|
|
class Time final : public Module::Interface {
|
|
public:
|
|
explicit Time(std::shared_ptr<Module> time, Core::System& system, const char* name);
|
|
~Time() override;
|
|
};
|
|
|
|
} // namespace Service::Time
|