summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applets.cpp
blob: 03b9d83e75f24da22caccadabec1a7fad3353e2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/frontend/applets/software_keyboard.h"
#include "core/hle/service/am/applets/applets.h"

namespace Service::AM::Applets {

Applet::Applet() = default;

Applet::~Applet() = default;

void Applet::Initialize(std::vector<std::shared_ptr<IStorage>> storage) {
    storage_stack = std::move(storage);
    initialized = true;
}

} // namespace Service::AM::Applets