MCPcopy Create free account
hub / github.com/badvision/jace / getMemory

Method getMemory

src/main/java/jace/core/Device.java:60–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

58
59 private RAM _ram = null;
60 protected RAM getMemory() {
61 if (_ram == null) {
62 _ram = Emulator.withMemory(m->m, null);
63 _ram.onDetach(()->_ram = null);
64 }
65 return _ram;
66 }
67
68 Device parentDevice = null;
69 public Device getParent() {

Callers 15

brunMethod · 0.45
saveScreenshotRawMethod · 0.45
withMemoryMethod · 0.45
bootWatchdogMethod · 0.45
resetEmulatorMethod · 0.45
isFinalRoomMethod · 0.45
allDesksMethod · 0.45
allDeadMethod · 0.45
killEnemyAtMethod · 0.45
teleportToMethod · 0.45
addCheatMethod · 0.45
removeCheatMethod · 0.45

Calls 2

withMemoryMethod · 0.95
onDetachMethod · 0.80

Tested by

no test coverage detected