From 09a500d0ae3693ed5fc03feec505c6b2664ada84 Mon Sep 17 00:00:00 2001 From: DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> Date: Mon, 31 Aug 2020 09:30:59 -0400 Subject: Initial Commit --- src/main/resources/LICENSE | 21 +++++++++++++++++++++ src/main/resources/mcmod.info | 16 ++++++++++++++++ src/main/resources/mixins.perspectivemod.json | 12 ++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 src/main/resources/LICENSE create mode 100644 src/main/resources/mcmod.info create mode 100644 src/main/resources/mixins.perspectivemod.json (limited to 'src/main/resources') diff --git a/src/main/resources/LICENSE b/src/main/resources/LICENSE new file mode 100644 index 0000000..45ae6c4 --- /dev/null +++ b/src/main/resources/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 DJtheRedstoner + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info new file mode 100644 index 0000000..5827825 --- /dev/null +++ b/src/main/resources/mcmod.info @@ -0,0 +1,16 @@ +[ +{ + "modid": "djperspectivemod", + "name": "Perspective Mod v4", + "description": "", + "version": "${version}", + "mcversion": "${mcversion}", + "url": "", + "updateUrl": "", + "authorList": ["DJtheRedstoner"], + "credits": "", + "logoFile": "", + "screenshots": [], + "dependencies": [] +} +] diff --git a/src/main/resources/mixins.perspectivemod.json b/src/main/resources/mixins.perspectivemod.json new file mode 100644 index 0000000..f307ca6 --- /dev/null +++ b/src/main/resources/mixins.perspectivemod.json @@ -0,0 +1,12 @@ +{ + "required": true, + "minVersion": "0.7.10", + "package": "me.djtheredstoner.perspectivemod.mixins", + "refmap": "mixins.perspectivemod.refmap.json", + "target": "@env(DEFAULT)", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "MixinEntityRenderer", + "MixinRenderManager" + ] +} \ No newline at end of file -- cgit