-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit of the Hydrazine path-finding engine (taken from 7654f…
…9f1229f6c7bb20ba4927c3bcea6e3ebd9d4 in MMM repo)
- Loading branch information
0 parents
commit 948fbda
Showing
41 changed files
with
7,027 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
out | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Copyright 2020 Jonathan B. Neufeld (extollIT Enterprises) | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
HYDRAZINE PATH-FINDING ENGINE SUBCOMPONENTS: | ||
|
||
Hydrazine Path-Finding Engine includes a number of subcomponents with | ||
separate copyright notices and license terms. Your use of the source | ||
code for these subcomponents is subject to the terms and | ||
conditions of the following licenses. | ||
|
||
This product bundles extollIT Data Structures 2.7, | ||
copyright Jonathan B. Neufeld, extollIT Enterprises, | ||
which is also available under the Apache 2.0 license. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Hydrazine Path-Finding Engine | ||
Copyright 2020 Jonathan B. Neufeld, extollIT Enterprises | ||
|
||
This product includes software developed at | ||
extollIT Enterprises (http://www.extollit.com/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
group 'com.extollit.gaming' | ||
version '1.02' | ||
|
||
apply plugin: 'java' | ||
|
||
compileJava { | ||
sourceCompatibility = '1.7' | ||
targetCompatibility = '1.7' | ||
} | ||
|
||
dependencies { | ||
testCompile group: 'junit', name: 'junit', version: '4.12' | ||
testCompile group: "org.mockito", name: "mockito-core", version: "1.10.19" | ||
|
||
compile project(':data-structures') | ||
} |
Oops, something went wrong.