summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/act/act.cpp
blob: 9600036c082556a32b5d3e34a6b8ab6ae70ca044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/act/act.h"
#include "core/hle/service/act/act_a.h"
#include "core/hle/service/act/act_u.h"

namespace Service {
namespace ACT {

void Init() {
    AddService(new ACT_A);
    AddService(new ACT_U);
}

} // namespace ACT
} // namespace Service