2016-05-18 01:28:25 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-13 06:35:24 +00:00
|
|
|
#include "core/hle/service/act/act.h"
|
|
|
|
#include "core/hle/service/act/act_a.h"
|
|
|
|
#include "core/hle/service/act/act_u.h"
|
2016-05-18 01:28:25 +00:00
|
|
|
|
2016-12-10 12:51:50 +00:00
|
|
|
namespace Service {
|
|
|
|
namespace ACT {
|
2016-05-18 01:28:25 +00:00
|
|
|
|
2016-12-13 06:35:24 +00:00
|
|
|
void Init() {
|
|
|
|
AddService(new ACT_A);
|
|
|
|
AddService(new ACT_U);
|
|
|
|
}
|
2016-05-18 01:28:25 +00:00
|
|
|
|
2016-12-10 12:51:50 +00:00
|
|
|
} // namespace ACT
|
|
|
|
} // namespace Service
|