Skip to content

Commit

Permalink
Initial commit of the Hydrazine path-finding engine (taken from 7654f…
Browse files Browse the repository at this point in the history
…9f1229f6c7bb20ba4927c3bcea6e3ebd9d4 in MMM repo)
  • Loading branch information
MadMartian committed Jun 20, 2020
0 parents commit 948fbda
Show file tree
Hide file tree
Showing 41 changed files with 7,027 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
out
build
25 changes: 25 additions & 0 deletions LICENSE
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.

5 changes: 5 additions & 0 deletions NOTICE
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/).
16 changes: 16 additions & 0 deletions build.gradle
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')
}
Loading

0 comments on commit 948fbda

Please sign in to comment.