Rename AccountService methods

This commit is contained in:
P0nk
2024-09-29 09:14:32 +02:00
parent da4a467453
commit a580e44bc9
8 changed files with 14 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ package client;
* @author Ponk
*/
public class LoginState {
public static final byte NOT_LOGGED_IN = 0;
public static final byte NOT_LOGGED_IN = 0; // TODO: rename to LOGGED_OUT
public static final byte SERVER_TRANSITION = 1;
public static final byte LOGGED_IN = 2;
}