aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/act/act.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2016-12-13 09:35:24 +0300
committermailwl <mailwl@gmail.com>2016-12-14 09:05:46 +0300
commit5dea1faeddc519b7f93f4be23a4a774b44469764 (patch)
tree9b1478280fbb19f204e591766e122aa0b2ed8a49 /src/core/hle/service/act/act.cpp
parentda995a4377ba5194ca9759c6b7f62adf081f25a3 (diff)
Service/ACT: move ACT services to folder
Diffstat (limited to 'src/core/hle/service/act/act.cpp')
-rw-r--r--src/core/hle/service/act/act.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/hle/service/act/act.cpp b/src/core/hle/service/act/act.cpp
new file mode 100644
index 000000000..9600036c0
--- /dev/null
+++ b/src/core/hle/service/act/act.cpp
@@ -0,0 +1,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