mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-08 20:28:51 -04:00
Service/ACT: move ACT services to folder
This commit is contained in:
18
src/core/hle/service/act/act.cpp
Normal file
18
src/core/hle/service/act/act.cpp
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user