Готово!

This commit is contained in:
artur-kalimullin 2024-06-17 11:13:01 +04:00
parent ab48eac425
commit b78de3d146

View File

@ -19,8 +19,8 @@ public class DrawningConstructor extends JComponent {
EntityAirCraft _entityAirCraft = null;
IDrawEngine _drawEngine = null;
Random rnd = new Random();
int paddlesType = rnd.nextInt(3);
switch (paddlesType) {
int Type = rnd.nextInt(3);
switch (Type) {
case 0:
_drawEngine = new DrawningEngine();
break;