├── .gitattributes ├── .gitignore ├── CSharpMinifier ├── CSharpMinifier.dll ├── CSharpMinify.exe ├── ICSharpCode.NRefactory.CSharp.dll ├── ICSharpCode.NRefactory.Cecil.dll ├── ICSharpCode.NRefactory.dll └── Mono.Cecil.dll ├── EasyAPI.cs ├── EasyAPI.debug.cs ├── README.md └── modules ├── BootstrapEasyAPI ├── BootstrapEasyAPI.cs └── module.json ├── BootstrapMain ├── EmptyMain.cs └── module.json ├── EasyAPI ├── EasyAPI.cs ├── build.bat ├── examples │ ├── auto_close_doors.cs │ ├── event_on_door_open_close.cs │ └── toggle_doors_on_damage.cs ├── module.json └── src │ ├── EasyAPI.cs │ ├── EasyBlock.cs │ ├── EasyBlocks.cs │ ├── EasyCommands.cs │ ├── EasyEvent.cs │ ├── EasyInterval.cs │ ├── EasyInventory.cs │ ├── EasyItem.cs │ └── EasyMessage.cs ├── EasyLCD ├── EasyLCD.cs └── module.json ├── EasyMenu ├── EasyMenu.cs ├── examples │ ├── CALMenu.cs │ ├── DHDDialer.cs │ ├── Example.cs │ ├── Example2.cs │ ├── PBMenu.cs │ └── ShipExplorer.cs └── module.json └── EasyUtils ├── EasyUtils.cs └── module.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharpMinifier/CSharpMinifier.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/CSharpMinifier.dll -------------------------------------------------------------------------------- /CSharpMinifier/CSharpMinify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/CSharpMinify.exe -------------------------------------------------------------------------------- /CSharpMinifier/ICSharpCode.NRefactory.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/ICSharpCode.NRefactory.CSharp.dll -------------------------------------------------------------------------------- /CSharpMinifier/ICSharpCode.NRefactory.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/ICSharpCode.NRefactory.Cecil.dll -------------------------------------------------------------------------------- /CSharpMinifier/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /CSharpMinifier/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/CSharpMinifier/Mono.Cecil.dll -------------------------------------------------------------------------------- /EasyAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/EasyAPI.cs -------------------------------------------------------------------------------- /EasyAPI.debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/EasyAPI.debug.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/README.md -------------------------------------------------------------------------------- /modules/BootstrapEasyAPI/BootstrapEasyAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/BootstrapEasyAPI/BootstrapEasyAPI.cs -------------------------------------------------------------------------------- /modules/BootstrapEasyAPI/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/BootstrapEasyAPI/module.json -------------------------------------------------------------------------------- /modules/BootstrapMain/EmptyMain.cs: -------------------------------------------------------------------------------- 1 | void Main(string argument) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /modules/BootstrapMain/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/BootstrapMain/module.json -------------------------------------------------------------------------------- /modules/EasyAPI/EasyAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/EasyAPI.cs -------------------------------------------------------------------------------- /modules/EasyAPI/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/build.bat -------------------------------------------------------------------------------- /modules/EasyAPI/examples/auto_close_doors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/examples/auto_close_doors.cs -------------------------------------------------------------------------------- /modules/EasyAPI/examples/event_on_door_open_close.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/examples/event_on_door_open_close.cs -------------------------------------------------------------------------------- /modules/EasyAPI/examples/toggle_doors_on_damage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/examples/toggle_doors_on_damage.cs -------------------------------------------------------------------------------- /modules/EasyAPI/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/module.json -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyAPI.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyBlock.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyBlocks.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyCommands.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyEvent.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyInterval.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyInventory.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyItem.cs -------------------------------------------------------------------------------- /modules/EasyAPI/src/EasyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyAPI/src/EasyMessage.cs -------------------------------------------------------------------------------- /modules/EasyLCD/EasyLCD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyLCD/EasyLCD.cs -------------------------------------------------------------------------------- /modules/EasyLCD/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyLCD/module.json -------------------------------------------------------------------------------- /modules/EasyMenu/EasyMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/EasyMenu.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/CALMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/CALMenu.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/DHDDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/DHDDialer.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/Example.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/Example2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/Example2.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/PBMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/PBMenu.cs -------------------------------------------------------------------------------- /modules/EasyMenu/examples/ShipExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/examples/ShipExplorer.cs -------------------------------------------------------------------------------- /modules/EasyMenu/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyMenu/module.json -------------------------------------------------------------------------------- /modules/EasyUtils/EasyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyUtils/EasyUtils.cs -------------------------------------------------------------------------------- /modules/EasyUtils/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockyjvec/EasyAPI/HEAD/modules/EasyUtils/module.json --------------------------------------------------------------------------------