Удаление ненужных полей.

This commit is contained in:
Артем Харламов 2022-12-19 23:38:14 +04:00
parent cab773db88
commit 81da5dc094
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ import java.awt.*;
public class DrawingEngines { public class DrawingEngines {
private DirectionEnginesOnStormtrooper enginesCount; private DirectionEnginesOnStormtrooper enginesCount;
private Color color;
public void SetNewEngines(int countEngines){ public void SetNewEngines(int countEngines){
if (countEngines == 4) { if (countEngines == 4) {
enginesCount = DirectionEnginesOnStormtrooper.FOUR; enginesCount = DirectionEnginesOnStormtrooper.FOUR;

View File

@ -7,7 +7,6 @@ import java.awt.event.ComponentListener;
import java.util.Random; import java.util.Random;
public class FormStormtrooper extends JComponent { public class FormStormtrooper extends JComponent {
private DrawingStormtrooper _stormtrooper; private DrawingStormtrooper _stormtrooper;
private EntityStormtrooper _entityStormtrooper;
public static void main(String[] args) { public static void main(String[] args) {
FormStormtrooper formStormtrooper = new FormStormtrooper(); FormStormtrooper formStormtrooper = new FormStormtrooper();
} }