├── .classpath ├── .idea ├── artifacts │ └── Test_JAR.xml └── copyright │ └── MIT.xml ├── .project ├── LICENSE.txt ├── README.md ├── SidebarAPI.iml ├── config.yml ├── plugin.yml ├── src └── com │ └── coloredcarrot │ └── api │ └── sidebar │ ├── Config.java │ ├── LongSidebar.java │ ├── Sidebar.java │ ├── SidebarAPI.java │ ├── SidebarOptionalException.java │ ├── SidebarPlaceholders.java │ ├── SidebarString.java │ ├── Sidebars.java │ └── Updater.java └── test ├── plugin.yml ├── src └── com │ └── coloredcarrot │ └── api │ └── sidebar │ └── test │ └── SidebarAPITest.java └── test.iml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/.classpath -------------------------------------------------------------------------------- /.idea/artifacts/Test_JAR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/.idea/artifacts/Test_JAR.xml -------------------------------------------------------------------------------- /.idea/copyright/MIT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/.idea/copyright/MIT.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/.project -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/README.md -------------------------------------------------------------------------------- /SidebarAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/SidebarAPI.iml -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- 1 | updater: 2 | auto-download: false 3 | -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/Config.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/LongSidebar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/LongSidebar.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/Sidebar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/Sidebar.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/SidebarAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/SidebarAPI.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/SidebarOptionalException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/SidebarOptionalException.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/SidebarPlaceholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/SidebarPlaceholders.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/SidebarString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/SidebarString.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/Sidebars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/Sidebars.java -------------------------------------------------------------------------------- /src/com/coloredcarrot/api/sidebar/Updater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/src/com/coloredcarrot/api/sidebar/Updater.java -------------------------------------------------------------------------------- /test/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/test/plugin.yml -------------------------------------------------------------------------------- /test/src/com/coloredcarrot/api/sidebar/test/SidebarAPITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/test/src/com/coloredcarrot/api/sidebar/test/SidebarAPITest.java -------------------------------------------------------------------------------- /test/test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCarrot/scoreboard-sidebar-api/HEAD/test/test.iml --------------------------------------------------------------------------------