Skip to content

Commit

Permalink
feat(refactor): Rename base packages and classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgivrer committed Aug 7, 2024
1 parent 4304cba commit d3334e9
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 129 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project.name=Demo01
project.title=Demo01
project.version=1.0.0
project.main.class=com.snapgames.apps.Demo01Frame
project.main.class=com.snapgames.apps.desktop.game.GameApp
project.javadoc.classpath=com.snapgames.apps
project.javadoc.packages=-group "Demo01" com.snapgames.apps
project.author.name=Frédéric Delorme
Expand Down
2 changes: 1 addition & 1 deletion src/docs/02-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ To use the `Demo01Frame` class, create an instance of it and add it to a JFrame:
```java
public class GameApp {
public static void main(String[] args) {
JFrame frame = new JFrame("Demo01Frame Game");
JFrame frame = new JFrame("GameApp Game");
Demo01Frame demo = new Demo01Frame();
frame.add(demo);
frame.setSize(800, 600);
Expand Down
2 changes: 1 addition & 1 deletion src/docs/resources/Demo01Frame_structure.puml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ config=StructureConfiguration;
"showPackageLevels": 2,
"showDetailedClassStructure": true
},
"rootClass": "com.snapgames.apps.Demo01Frame",
"rootClass": "com.snapgames.apps.desktop.game.GameApp",
"extensionCallbackMethod": "" // qualified.class.name#methodName - signature: public static String method(String)
}
diagram meta data end '/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.snapgames.apps;
package com.snapgames.apps.console;

import java.io.IOException;
import java.time.LocalDateTime;
Expand Down
Loading

0 comments on commit d3334e9

Please sign in to comment.