Skip to content

Commit 9ba089f

Browse files
Add copyright headers
1 parent 9707b01 commit 9ba089f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+426
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ build/
55
!**/src/test/**/build/
66

77
### IntelliJ IDEA ###
8-
.idea
8+
.idea/*
9+
!.idea/copyright
10+
!.idea/scopes
911
*.iws
1012
*.iml
1113
*.ipr

.idea/copyright/Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/scopes/Copyright.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/gg/essential/partnermod/AdButton.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
package gg.essential.partnermod;
213

314
import net.minecraft.client.Minecraft;

src/main/java/gg/essential/partnermod/Draw.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
package gg.essential.partnermod;
213

314
import net.minecraft.client.Minecraft;

src/main/java/gg/essential/partnermod/EssentialAPI.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
package gg.essential.partnermod;
213

314
import gg.essential.partnermod.data.PartnerModData;

src/main/java/gg/essential/partnermod/EssentialPartner.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
package gg.essential.partnermod;
213

314
import com.google.gson.Gson;

src/main/java/gg/essential/partnermod/EssentialPartnerMod.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
// Stub class so Forge doesn't complain that there's no mod for the toml entry when running standalone jars for testing
213
// but at the same time it can easily be excluded so Forge doesn't complain about there being no toml entry for the mod
314
// when bundled in another mod jar.

src/main/java/gg/essential/partnermod/EssentialUtil.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Copyright © 2025 ModCore Inc. All rights reserved.
3+
*
4+
* This code is part of ModCore Inc.’s Essential Partner Mod Integration
5+
* repository and is protected under copyright. For the full license, see:
6+
* https://github.com/EssentialGG/EssentialPartnerMod/tree/main/LICENSE
7+
*
8+
* You may modify, fork, and use the Mod, but may not retain ownership of
9+
* accepted contributions, claim joint ownership, or use Essential’s trademarks.
10+
*/
11+
112
package gg.essential.partnermod;
213

314
import net.minecraft.client.Minecraft;

0 commit comments

Comments
 (0)