├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── HowtoExample.csproj ├── README.md ├── UNLICENSE ├── docs ├── omnisharp.png ├── overview.png ├── rightclick.png └── using.png ├── resources ├── assets │ └── howtoexamplemod │ │ ├── blocktypes │ │ └── instatnt.json │ │ ├── lang │ │ └── en.json │ │ └── textures │ │ └── block │ │ ├── instatnt-side.png │ │ └── instatnt-topbottom.png ├── modicon.png └── modinfo.json └── src ├── HowtoExampleMod.cs └── InstaTNTBehavior.cs /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /HowtoExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/HowtoExample.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/UNLICENSE -------------------------------------------------------------------------------- /docs/omnisharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/docs/omnisharp.png -------------------------------------------------------------------------------- /docs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/docs/overview.png -------------------------------------------------------------------------------- /docs/rightclick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/docs/rightclick.png -------------------------------------------------------------------------------- /docs/using.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/docs/using.png -------------------------------------------------------------------------------- /resources/assets/howtoexamplemod/blocktypes/instatnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/assets/howtoexamplemod/blocktypes/instatnt.json -------------------------------------------------------------------------------- /resources/assets/howtoexamplemod/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/assets/howtoexamplemod/lang/en.json -------------------------------------------------------------------------------- /resources/assets/howtoexamplemod/textures/block/instatnt-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/assets/howtoexamplemod/textures/block/instatnt-side.png -------------------------------------------------------------------------------- /resources/assets/howtoexamplemod/textures/block/instatnt-topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/assets/howtoexamplemod/textures/block/instatnt-topbottom.png -------------------------------------------------------------------------------- /resources/modicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/modicon.png -------------------------------------------------------------------------------- /resources/modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/resources/modinfo.json -------------------------------------------------------------------------------- /src/HowtoExampleMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/src/HowtoExampleMod.cs -------------------------------------------------------------------------------- /src/InstaTNTBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copygirl/howto-example-mod/HEAD/src/InstaTNTBehavior.cs --------------------------------------------------------------------------------