2018-01-18 08:58:29 -08:00
|
|
|
// Copyright 2018 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"
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
namespace Service::Time {
|
2018-01-18 08:58:29 -08:00
|
|
|
|
2018-07-23 23:45:23 -07:00
|
|
|
class TIME final : public Module::Interface {
|
2018-01-18 08:58:29 -08:00
|
|
|
public:
|
2018-07-23 23:45:23 -07:00
|
|
|
explicit TIME(std::shared_ptr<Module> time, const char* name);
|
2018-01-18 08:58:29 -08:00
|
|
|
};
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
} // namespace Service::Time
|