2016-05-17 18:28:25 -07:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-12 22:35:24 -08: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-17 18:28:25 -07:00
|
|
|
|
2016-12-10 04:51:50 -08:00
|
|
|
namespace Service {
|
|
|
|
namespace ACT {
|
2016-05-17 18:28:25 -07:00
|
|
|
|
2016-12-12 22:35:24 -08:00
|
|
|
void Init() {
|
|
|
|
AddService(new ACT_A);
|
|
|
|
AddService(new ACT_U);
|
|
|
|
}
|
2016-05-17 18:28:25 -07:00
|
|
|
|
2016-12-10 04:51:50 -08:00
|
|
|
} // namespace ACT
|
|
|
|
} // namespace Service
|