Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Doppeltgemoppelt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
btomi96
Doppeltgemoppelt
Commits
b36f39d7
Commit
b36f39d7
authored
9 years ago
by
edani95
Browse files
Options
Downloads
Patches
Plain Diff
Game begin map init bug fix
parent
31e890bc
No related branches found
No related tags found
1 merge request
!50
Game begin map init bug fix
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/app/GameController.java
+1
-2
1 addition, 2 deletions
core/app/GameController.java
with
1 addition
and
2 deletions
core/app/GameController.java
+
1
−
2
View file @
b36f39d7
...
@@ -18,11 +18,10 @@ public class GameController {
...
@@ -18,11 +18,10 @@ public class GameController {
private
View
view
;
private
View
view
;
private
ArrayList
<
IElement
>[][]
map
;
private
ArrayList
<
IElement
>[][]
map
;
@SuppressWarnings
(
"unchecked"
)
public
GameController
(
View
view
,
int
width
,
int
height
)
public
GameController
(
View
view
,
int
width
,
int
height
)
{
{
this
.
view
=
view
;
this
.
view
=
view
;
map
=
new
ArrayList
[
width
][
height
]
;
map
=
InitController
.
map
;
}
}
public
void
startGameProcess
()
throws
GameRunningException
public
void
startGameProcess
()
throws
GameRunningException
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment