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