act.cpp 399 B

123456789101112131415161718
  1. // Copyright 2016 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/act/act.h"
  5. #include "core/hle/service/act/act_a.h"
  6. #include "core/hle/service/act/act_u.h"
  7. namespace Service {
  8. namespace ACT {
  9. void Init() {
  10. AddService(new ACT_A);
  11. AddService(new ACT_U);
  12. }
  13. } // namespace ACT
  14. } // namespace Service