Renamed texture operations

Started separating out draw calls
This commit is contained in:
Woah 2021-03-24 17:15:16 -04:00
parent 9a3d79abf0
commit c1efb2a344
227 changed files with 5048 additions and 5118 deletions

View file

@ -53,9 +53,9 @@ public class ModPanel extends JPanel {
}
private void sendCommand(String command) {
Class3_Sub13_Sub1.outgoingBuffer.putOpcode(44);
Class3_Sub13_Sub1.outgoingBuffer.writeByte(command.length() + -1);
Class3_Sub13_Sub1.outgoingBuffer.writeString(command.substring(2));
TextureOperation12.outgoingBuffer.putOpcode(44);
TextureOperation12.outgoingBuffer.writeByte(command.length() + -1);
TextureOperation12.outgoingBuffer.writeString(command.substring(2));
}
class ButtonListener implements ActionListener {