mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
16 lines
No EOL
296 B
C++
16 lines
No EOL
296 B
C++
#pragma once
|
|
|
|
#include "helpers.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class AppletBase {
|
|
Memory& mem;
|
|
|
|
public:
|
|
// Called by APT::StartLibraryApplet and similar
|
|
virtual Result::HorizonResult start() = 0;
|
|
virtual void reset() = 0;
|
|
|
|
AppletBase(Memory& mem) : mem(mem) {}
|
|
}; |