Skip to content

Commit

Permalink
apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineThreepwood committed Feb 5, 2024
1 parent 5a244f2 commit eb3ee6d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ plugins {
group = "org.openbase"
description = "PlanetSudo is a reactive multi agent simulation game. This package can be used to prototype the artificial intelligence for a new team."


repositories {
mavenLocal()
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ package org.openbase.planetsudo.game.strategy /*-
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
Expand Down Expand Up @@ -68,11 +68,11 @@ class DefaultStrategy(agent: AgentInterface) : AbstractStrategy(agent) {
* oder "Just Go" swat ALPHA and FOXTROT inCase { true } then { agent.go()}
*/
override fun loadRules() {
//-------------------------------------------->
"Just Go" all inCase { true } then { agent.go()}
//-------------------------------------------->
// -------------------------------------------->
"Just Go" all inCase { true } then { agent.go() }
// -------------------------------------------->
// Füge hier die Regel mit der nächst höheren Priorität ein. <---- !!! HIER STARTEN !!!
//-------------------------------------------->
// -------------------------------------------->
}

/**
Expand Down
5 changes: 2 additions & 3 deletions src/main/kotlin/org/openbase/planetsudo/main/PlanetSudo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,18 @@ package org.openbase.planetsudo.main /*-
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/


/**
*
* @author Divine Threepwood
Expand Down

0 comments on commit eb3ee6d

Please sign in to comment.