22 package com.realtime.crossfire.jxclient.faces;
24 import java.util.HashMap;
26 import org.jetbrains.annotations.NotNull;
38 private final Map<Integer, Integer>
smoothFaces =
new HashMap<>();
48 smooth = smoothFaces.get(face);
50 return smooth == null ? 0 : smooth;
60 smoothFaces.put(face, smoothFace);
final Map< Integer, Integer > smoothFaces
All known smoothing mappings.
void updateSmoothFace(final int face, final int smoothFace)
Updates smooth face information.
int getSmoothFace(final int face)
Returns the smoothing face associated with a given face.
Maintains smoothing information received from the Crossfire server.