Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BattleArena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Scherbaum Maximilian
BattleArena
Commits
2759b4bd
Commit
2759b4bd
authored
1 year ago
by
Gehrung Jonas
Browse files
Options
Downloads
Patches
Plain Diff
ADD: Sound
parent
8b0b052d
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.idea/misc.xml
+2
-1
2 additions, 1 deletion
.idea/misc.xml
src/main/java/de/hdm_stuttgart/battlearena/Model/Sound/Sound.java
+24
-0
24 additions, 0 deletions
.../java/de/hdm_stuttgart/battlearena/Model/Sound/Sound.java
with
26 additions
and
1 deletion
.idea/misc.xml
+
2
−
1
View file @
2759b4bd
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<project
version=
"4"
>
<component
name=
"ExternalStorageConfigurationManager"
enabled=
"true"
/>
<component
name=
"ExternalStorageConfigurationManager"
enabled=
"true"
/>
<component
name=
"MavenProjectsManager"
>
<component
name=
"MavenProjectsManager"
>
...
@@ -7,7 +8,7 @@
...
@@ -7,7 +8,7 @@
</list>
</list>
</option>
</option>
</component>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_21"
project-jdk-name=
"
openjdk-
21"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_21"
project-jdk-name=
"21"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
<output
url=
"file://$PROJECT_DIR$/out"
/>
</component>
</component>
</project>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/java/de/hdm_stuttgart/battlearena/Model/Sound/Sound.java
0 → 100644
+
24
−
0
View file @
2759b4bd
package
de.hdm_stuttgart.battlearena.Model.Sound
;
import
org.apache.logging.log4j.Logger
;
import
org.apache.logging.log4j.LogManager
;
public
class
Sound
{
private
static
final
Logger
log
=
LogManager
.
getLogger
(
Sound
.
class
);
private
String
id
;
private
String
path
;
public
Sound
(
String
id
,
String
path
)
{
this
.
id
=
id
;
this
.
path
=
path
;
}
public
String
getId
()
{
return
id
;
}
public
String
getPath
()
{
return
path
;
}
}
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