Crossfire JXClient, Trunk
CfAnimationsMapListener.java
Go to the documentation of this file.
1 package com.realtime.crossfire.jxclient.map;
2 
3 import org.jetbrains.annotations.NotNull;
4 
5 public interface CfAnimationsMapListener {
6 
12  @NotNull
13  Object mapBegin();
14 
20  void mapFace(@NotNull Location location, int faceNum);
21 
25  void mapEnd();
26 
27 }
com.realtime.crossfire.jxclient.map.CfAnimationsMapListener.mapFace
void mapFace(@NotNull Location location, int faceNum)
Part of "map2" parsing: set the face of a cell.
com.realtime.crossfire.jxclient.map.CfAnimationsMapListener.mapEnd
void mapEnd()
Parsing of "map2" has been finished.
com.realtime.crossfire.jxclient.map.CfAnimationsMapListener.mapBegin
Object mapBegin()
Parsing of a "map2" command has been started.
com.realtime.crossfire.jxclient.map.CfAnimationsMapListener
Definition: CfAnimationsMapListener.java:5
com.realtime.crossfire.jxclient.map.Location
A location on the map.
Definition: Location.java:32