Package net.storm.api.game
Interface IGame
-
public interface IGame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description int
getDeadmanLevel()
GameAccount
getGameAccount()
java.time.Instant
getLastLogin()
int
getMembershipDays()
net.runelite.api.GameState
getState()
int
getWildyLevel()
boolean
isBlackScreen()
boolean
isInCutscene()
boolean
isInWilderness()
boolean
isLoggedIn()
default boolean
isOnLoginScreen()
void
logout()
void
setGameAccount(GameAccount account)
-
-
-
Method Detail
-
getGameAccount
GameAccount getGameAccount()
-
setGameAccount
void setGameAccount(GameAccount account)
-
isLoggedIn
boolean isLoggedIn()
-
getState
net.runelite.api.GameState getState()
-
isInCutscene
boolean isInCutscene()
-
getWildyLevel
int getWildyLevel()
-
isInWilderness
boolean isInWilderness()
-
isOnLoginScreen
default boolean isOnLoginScreen()
-
getDeadmanLevel
int getDeadmanLevel()
-
getMembershipDays
int getMembershipDays()
-
isBlackScreen
boolean isBlackScreen()
-
logout
void logout()
-
getLastLogin
java.time.Instant getLastLogin()
-
-