⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pluggablemapio.java

📁 tiled地图编辑器是2d的,很不错的国外软件,使用起来很方便的
💻 JAVA
字号:
/* *  Tiled Map Editor, (c) 2004-2006 * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  Adam Turk <aturk@biggeruniverse.com> *  Bjorn Lindeijer <b.lindeijer@xs4all.nl> */package tiled.io;/** * This is the interface for all Tiled I/O plugins, whether they load, save, or * both. The PluginClassLoader also uses this to check the supported file * extensions. */public interface PluggableMapIO{    /**     * Lists supported file extensions. This function is used by the editor to     * find the plugin to use for a specific file extension.     *     * @return a comma delimited string of supported file extensions     * @throws Exception     */    public String getFilter() throws Exception;    /**     * Returns a short description of the plugin, or the plugin name. This     * string is displayed in the list of loaded plugins under the Help menu in     * Tiled.     *     * @return a short name or description     */    public String getName();    /**     * Returns a long description (no limit) that details the plugin's     * capabilities, author, contact info, etc.     *     * @return a long description of the plugin     */    public String getDescription();    /**     * Returns the base Java package string for the plugin     *     * @return String the base package of the plugin     */    public String getPluginPackage();    /**     * The PluginLogger object passed by the editor when the plugin is called to load     * or save a map can be used by the plugin to notify the user of any     * problems or messages.     *     * @param logger     */    public void setLogger(PluginLogger logger);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -