├── .gitignore ├── FD_SamplePlugin.hxml ├── FD_SamplePlugin.hxproj ├── README.md ├── hxplugin.png └── src ├── Main.hx ├── resources ├── LocaleHelper.hx ├── en_US.resX └── en_US.resources └── sampleplugin ├── PluginMain.hx ├── PluginUI.hx └── Settings.hx /.gitignore: -------------------------------------------------------------------------------- 1 | *.cs 2 | *.txt 3 | *.csproj -------------------------------------------------------------------------------- /FD_SamplePlugin.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/FD_SamplePlugin.hxml -------------------------------------------------------------------------------- /FD_SamplePlugin.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/FD_SamplePlugin.hxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/README.md -------------------------------------------------------------------------------- /hxplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/hxplugin.png -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/resources/LocaleHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/resources/LocaleHelper.hx -------------------------------------------------------------------------------- /src/resources/en_US.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/resources/en_US.resX -------------------------------------------------------------------------------- /src/resources/en_US.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/resources/en_US.resources -------------------------------------------------------------------------------- /src/sampleplugin/PluginMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/sampleplugin/PluginMain.hx -------------------------------------------------------------------------------- /src/sampleplugin/PluginUI.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/sampleplugin/PluginUI.hx -------------------------------------------------------------------------------- /src/sampleplugin/Settings.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skial/FD_SamplePlugin/HEAD/src/sampleplugin/Settings.hx --------------------------------------------------------------------------------