Skip to content

Commit

Permalink
Merge pull request #356 from fixrtm/license-header-checker
Browse files Browse the repository at this point in the history
add license check

I often forgot to add license header so I add CI to check license header is exists
  • Loading branch information
anatawa12 authored Nov 5, 2021
2 parents 953cd93 + d31b344 commit d23bca5
Show file tree
Hide file tree
Showing 91 changed files with 177 additions and 84 deletions.
43 changes: 43 additions & 0 deletions .github/license-check/header-check.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[
{
"include": [
"{buildSrc,src}/**/*.{kt,java,js}",
"**/*.gradle",
"**/*.kts"
],
"license": "./.github/license-check/header-triple-slash.txt"
},
{
"include": [
"**/*.yml",
"**/*.cfg",
"**/*.properties",
"src/main/java/com/anatawa12/fixRtm/ngtlib/renderer/model/CachedPolygonModelFormat.txt"
],
"exclude": [
"gradle/wrapper/*"
],
"license": "./.github/license-check/header-hash.txt"
},
{
"__comment": "ignored files:",
"include": [
"**/*.md",
"**/*.png",
"**/*.json",
"gradle/wrapper/*",
"gradlew",
"gradlew.bat",
"LICENSE",
"LICENSE-FOR-ORIGINAL-AUTHOR.txt",
"important-structure/**/*",
"src/main/{ngtlib,rtm}-patches/**/*.java.patch",
"src/main/resources/kotlin-LICENSE.txt",
"src/main/resources/LICENSE.txt",
"src/main/resources/mcmod.info",
"src/main/resources/pack.mcmeta",
"src/main/resources/README.txt",
"src/main/resources/sai-LICENSE.txt"
]
}
]
3 changes: 3 additions & 0 deletions .github/license-check/header-hash.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright (c) %year% anatawa12 and other contributors
# This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
# See LICENSE at https://github.com/fixrtm/fixRTM for more details
3 changes: 3 additions & 0 deletions .github/license-check/header-triple-slash.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/// Copyright (c) %year% anatawa12 and other contributors
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details
28 changes: 28 additions & 0 deletions .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (c) 2021 anatawa12 and other contributors
# This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
# See LICENSE at https://github.com/fixrtm/fixRTM for more details

# This is a basic workflow to help you get started with Actions

name: License Header Check

on:
push: {}

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- uses: viperproject/check-license-header@v1
with:
path: .
config: .github/license-check/header-check.json
strict: true
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (c) 2019 anatawa12 and other contributors
# This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
# See LICENSE at https://github.com/fixrtm/fixRTM for more details

org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
modGroup=com.anatawa12.fixRtm
modVersion=2.0.20-beta3
Expand Down
4 changes: 4 additions & 0 deletions processMods.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

final importantStructureDir = new File(projectDir, "important-structure")

task addImportantStructureDir(type: Exec) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/ApiBridgeImpl.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/DeflateByteBuf.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/FixHooks.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

@file:JvmName("FixHooks")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/FixRtm.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/KeyboardUtil.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/Loggers.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/PermissionManager.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/TestBlock.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/ThreadUtil.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/Utils.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/api/ApiBridge.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.api;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.api;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/asm/FixRtmCorePlugin.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/asm/MultiModelObject.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm.config
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm.hooking
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm.hooking
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm.patching
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.asm.patching
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/caching/FileCache.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.caching
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.caching
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.caching
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.crash
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.crash
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.crash
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/gui/GuiChangeOffset.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.gui
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/gui/GuiHandler.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.gui
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/gui/GuiId.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.gui
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/io/FIXFileLoader.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.io
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/io/FIXModelPack.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.io
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/io/FIXResource.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.io
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2019 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.network
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.network
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.network
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.ngtlib.command
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anatawa12/fixRtm/ngtlib/io/ScriptUtil.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.ngtlib.io
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.ngtlib.item.craft
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.ngtlib.renderer.model
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) 2020 anatawa12 and other contributors
# This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
# This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
# See LICENSE at https://github.com/fixrtm/fixRTM for more details

CachedModel {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Copyright (c) 2020 anatawa12 and other contributors
/// This file is/was part of fixRTM, released under GNU LGPL v3 with few exceptions
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

@file:JvmName("ModelLoaderKt")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details

package com.anatawa12.fixRtm.ngtlib.renderer.model

import com.anatawa12.fixRtm.MS932
Expand Down
Loading

0 comments on commit d23bca5

Please sign in to comment.