mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-18 04:42:45 +01:00
3c1cb3b11e
Given we already have time:s and time:u, we should also have time:a
16 lines
362 B
C++
16 lines
362 B
C++
// 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"
|
|
|
|
namespace Service::Time {
|
|
|
|
class Time final : public Module::Interface {
|
|
public:
|
|
explicit Time(std::shared_ptr<Module> time, const char* name);
|
|
};
|
|
|
|
} // namespace Service::Time
|