/**
* Save all current Key Listeners and remove them from the
* map. Used by Traits that need to prevent Key Commands
* at certain times.
*/
public void enableKeyListeners() {
if (saveKeyListeners == null) return;
for (KeyListener kl : saveKeyListeners) {
theMap.addKeyListener(kl);
}
saveKeyListeners = null;
}
Map.java 文件源码
java
阅读 41
收藏 0
点赞 0
评论 0
项目:VASSAL-src
作者:
评论列表
文章目录