PIbd-14_Calimullin_A.R._Lab03_Hard #3

Closed
Bloody_Arthur wants to merge 10 commits from Lab3 into Lab2
Showing only changes of commit b78de3d146 - Show all commits

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;