Contol Windwo Update. Velocity Change implemented. FONT and some other Var and method needs to be implemented in the GUI class not in Menu Window
UPdate
This commit is contained in:
Binary file not shown.
@@ -1423,3 +1423,24 @@ select gen from gameInfo where name = 'DUstinkst' [42122-200]
|
||||
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
|
||||
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
|
||||
at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
|
||||
2021-12-01 13:30:37 jdbc[3]: exception
|
||||
java.sql.SQLClientInfoException: Client info name 'ApplicationName' not supported.
|
||||
at org.h2.jdbc.JdbcConnection.setClientInfo(JdbcConnection.java:1749)
|
||||
at com.intellij.database.remote.jdbc.impl.RemoteConnectionImpl.setClientInfo(RemoteConnectionImpl.java:470)
|
||||
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
||||
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
||||
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
||||
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
|
||||
at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:359)
|
||||
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
|
||||
at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
|
||||
at java.base/java.security.AccessController.doPrivileged(Native Method)
|
||||
at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
|
||||
at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:562)
|
||||
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:796)
|
||||
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:677)
|
||||
at java.base/java.security.AccessController.doPrivileged(Native Method)
|
||||
at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:676)
|
||||
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
|
||||
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
|
||||
at java.base/java.lang.Thread.run(Thread.java:829)
|
||||
|
||||
+18
-16
@@ -1,7 +1,6 @@
|
||||
package main;
|
||||
|
||||
|
||||
import data.database.DataBase;
|
||||
import game.Control;
|
||||
|
||||
public class Main {
|
||||
@@ -13,27 +12,30 @@ public class Main {
|
||||
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
|
||||
Control control = new Control();
|
||||
control.start();
|
||||
DataBase dataBase = new DataBase();
|
||||
// DataBase dataBase = new DataBase();
|
||||
// dataBase.deleteTables();
|
||||
// dataBase.createTables();
|
||||
|
||||
|
||||
// boolean[][] cells = new boolean[44][66];
|
||||
//
|
||||
// for (int x = 0; x < 6; x++) {
|
||||
// for (int y = 0; y < 6; y++) {
|
||||
// cells[x][y] = false;
|
||||
// }
|
||||
// }
|
||||
//
|
||||
//
|
||||
// cells[3][3] = true;
|
||||
//
|
||||
// dataBase.saveGrid(cells, "whoa", 88);
|
||||
//
|
||||
// boolean[][] cells = new boolean[44][66];
|
||||
|
||||
//for (int x = 0; x < 6; x++) {
|
||||
// for (int y = 0; y < 6; y++) {
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
// for (int x = 0; x < 6; x++) {
|
||||
// for (int y = 0; y < 6; y++) {
|
||||
// cells[x][y] = true;
|
||||
// }
|
||||
// }
|
||||
|
||||
// dataBase.saveGrid(cells, "Noah", 1012);
|
||||
|
||||
// System.out.println(dataBase.getAllGrids());
|
||||
|
||||
// boolean[][] x = dataBase.getGrid("penis");
|
||||
|
||||
Reference in New Issue
Block a user