Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Progark gruppe 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Ingebrigt Ørstad
Progark gruppe 3
Merge requests
!76
Resolve "Local Storage"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Local Storage"
79-local-storage
into
dev
Overview
0
Commits
3
Pipelines
0
Changes
4
Merged
Ivar Nordvik Myrstad
requested to merge
79-local-storage
into
dev
5 years ago
Overview
0
Commits
3
Pipelines
0
Changes
4
Expand
Closes
#79 (closed)
Edited
5 years ago
by
Ivar Nordvik Myrstad
0
0
Merge request reports
Compare
dev
version 2
242a92d4
5 years ago
version 1
ace452b8
5 years ago
dev (base)
and
latest version
latest version
8a8d4c37
3 commits,
5 years ago
version 2
242a92d4
2 commits,
5 years ago
version 1
ace452b8
1 commit,
5 years ago
4 files
+
86
−
4
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
frontend/core/src/com/gameware/game/models/LocalStorage.java
0 → 100644
+
34
−
0
Options
package
com.gameware.game.models
;
public
class
LocalStorage
{
private
Player
player
;
private
Boolean
musicOn
;
private
Boolean
soundEffects
;
private
Boolean
includeFin
;
public
LocalStorage
()
{
}
public
LocalStorage
(
Player
player
,
Boolean
musicOn
,
Boolean
soundEffects
,
Boolean
includeFin
)
{
this
.
player
=
player
;
this
.
musicOn
=
musicOn
;
this
.
soundEffects
=
soundEffects
;
this
.
includeFin
=
includeFin
;
}
public
Player
getPlayer
()
{
return
player
;
}
public
Boolean
getMusicOn
()
{
return
musicOn
;
}
public
Boolean
getSoundEffects
()
{
return
soundEffects
;
}
public
Boolean
getIncludeFin
()
{
return
includeFin
;
}
}
Loading