Uses of Class
vooga.replay.core.VoogaSave

Packages that use VoogaSave
vooga.arcade.events   
vooga.gameEngine.core   
vooga.replay.core This package contains major classes used for interfacing with Replay and used for the backend and frontend. 
vooga.replay.eventListeners This package contains classes handling event listeners. 
 

Uses of VoogaSave in vooga.arcade.events
 

Methods in vooga.arcade.events that return VoogaSave
 VoogaSave StartGameEvent.getReplay()
          Gets the instantiation of the replay.
 

Constructors in vooga.arcade.events with parameters of type VoogaSave
StartGameEvent(int ID, java.lang.String gameTitle, VoogaSave voogaSave)
          Constructs the event that is fired when the game is started.
 

Uses of VoogaSave in vooga.gameEngine.core
 

Constructors in vooga.gameEngine.core with parameters of type VoogaSave
GameEngine(java.lang.Class<? extends AbstractGame> gameClass, int playerNo, int totalPlayers, VoogaGameClient networkClient, VoogaSave replay, java.util.Collection<? extends java.util.EventListener> gameStatusListeners)
          Constructor for a networked instance of a game and game engine that can be replayed.
GameEngine(java.lang.Class<? extends AbstractGame> gameClass, VoogaSave replay, java.util.Collection<? extends java.util.EventListener> gameStatusListeners)
          Creates a GameEngine object provided Class of the AbstractGame to be played and the VoogaSave object, which stores game time as well as any events fired due to user/network input.
 

Uses of VoogaSave in vooga.replay.core
 

Methods in vooga.replay.core that return VoogaSave
 VoogaSave Replay.getVoogaSave(int frameID)
          Gets the VoogaSave associated with the frame ID
 

Methods in vooga.replay.core with parameters of type VoogaSave
 void Replay.setVoogaSave(int frameID, VoogaSave voogaSave)
          Saves the frameID and VoogaSave object associated with it in a map
 

Uses of VoogaSave in vooga.replay.eventListeners
 

Constructors in vooga.replay.eventListeners with parameters of type VoogaSave
MarkReplayPointAction(VoogaSave voogaSave)
           
ReplayMarkPointAction(VoogaSave voogaSave, AbstractVoogaReplay voogaReplay, javax.swing.JList replayPointsList)
           
SaveAction(VoogaSave saveObject)