Archived
Private
Public Access
1
0

Update 29.10.2022

This commit is contained in:
2022-10-29 18:17:27 +02:00
parent 2a1d18cb9d
commit 494fb2d8c5
355 changed files with 408588 additions and 155997 deletions

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
</set>
</option>
</component>
</project>

6
Java/IdleGame/.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

Binary file not shown.

View File

@@ -42,6 +42,8 @@ public class IdleGame implements ActionListener {
engine.calculate((int) (System.currentTimeMillis() - data.lastCalculationTime) / 1000);
}else data = new Save();
screen.add(new MenuBar(screen.getWidth(), 50, 0, 0));
CommandManager.addCommand("money", new MoneyCmd());
CommandManager.addCommand("generator", new GeneratorCmd());

View File

@@ -61,8 +61,6 @@ public class Screen extends JFrame {
}
});
add(new MenuBar(width, 50, 0, 0));
}
}