├── .editorconfig ├── .gitignore ├── .gitmodules ├── GlobalWingsItem.cs ├── LICENSE ├── Localization ├── de-DE.hjson ├── en-US.hjson └── zh-Hans.hjson ├── Properties └── launchSettings.json ├── README.md ├── WingAccessorySlots.cs ├── WingSlot.cs ├── WingSlot.csproj ├── WingSlotConfig.cs ├── WingSlotPlayer.cs ├── WingSlotSystem.cs ├── description.txt ├── description_workshop.txt └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/.gitmodules -------------------------------------------------------------------------------- /GlobalWingsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/GlobalWingsItem.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/de-DE.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/Localization/de-DE.hjson -------------------------------------------------------------------------------- /Localization/en-US.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/Localization/en-US.hjson -------------------------------------------------------------------------------- /Localization/zh-Hans.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/Localization/zh-Hans.hjson -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/README.md -------------------------------------------------------------------------------- /WingAccessorySlots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingAccessorySlots.cs -------------------------------------------------------------------------------- /WingSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingSlot.cs -------------------------------------------------------------------------------- /WingSlot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingSlot.csproj -------------------------------------------------------------------------------- /WingSlotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingSlotConfig.cs -------------------------------------------------------------------------------- /WingSlotPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingSlotPlayer.cs -------------------------------------------------------------------------------- /WingSlotSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/WingSlotSystem.cs -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/description.txt -------------------------------------------------------------------------------- /description_workshop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/description_workshop.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abluescarab/tModLoader-WingSlot/HEAD/icon.png --------------------------------------------------------------------------------