package org.neoflock.NeoNucleus; public final class nn_EnvironmentRequest { public final nn_Computer computer; public final nn_EnvironmentAction action; private nn_EnvironmentRequest(nn_Computer computer, nn_EnvironmentAction action) { this.computer = computer; this.action = action; } public native double getEnergy(); public native nn_Beep getBeep(); public native nn_MorseBeep getMorseBeep(); }