Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SpaceShooter-01
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
a.guest
SpaceShooter-01
Commits
aae3234a
Commit
aae3234a
authored
Jul 30, 2019
by
a.guest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed package to spaceShooter
parent
55f09740
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
.gitignore
bin/.gitignore
+1
-0
SpaceShooter.java
src/spaceshooter/SpaceShooter.java
+3
-3
enemyObject.java
src/spaceshooter/enemyObject.java
+1
-1
No files found.
bin/.gitignore
View file @
aae3234a
/data/
/data/
/spaceshooter01/
/spaceshooter01/
/spaceshooter/
src/spaceshooter
01/SpaceShooter01
.java
→
src/spaceshooter
/SpaceShooter
.java
View file @
aae3234a
package
spaceshooter
01
;
package
spaceshooter
;
import
processing.core.PApplet
;
import
processing.core.PApplet
;
import
processing.core.PImage
;
import
processing.core.PImage
;
public
class
SpaceShooter
01
extends
PApplet
{
public
class
SpaceShooter
extends
PApplet
{
enemyObject
asteroid
;
// object used to define an asteroid
enemyObject
asteroid
;
// object used to define an asteroid
...
@@ -73,7 +73,7 @@ public class SpaceShooter01 extends PApplet {
...
@@ -73,7 +73,7 @@ public class SpaceShooter01 extends PApplet {
// In this case it starts the processing applet
// In this case it starts the processing applet
// this calls settings() followed by setup(), then begins repeatedly calling draw.
// this calls settings() followed by setup(), then begins repeatedly calling draw.
public
static
void
main
(
String
[]
passedArgs
)
{
public
static
void
main
(
String
[]
passedArgs
)
{
String
[]
appletArgs
=
new
String
[]
{
"spaceshooter
01.SpaceShooter01
"
};
String
[]
appletArgs
=
new
String
[]
{
"spaceshooter
.SpaceShooter
"
};
PApplet
.
main
(
appletArgs
);
PApplet
.
main
(
appletArgs
);
}
}
}
}
src/spaceshooter
01
/enemyObject.java
→
src/spaceshooter/enemyObject.java
View file @
aae3234a
package
spaceshooter
01
;
package
spaceshooter
;
import
processing.core.PApplet
;
import
processing.core.PApplet
;
import
processing.core.PImage
;
import
processing.core.PImage
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment