Move Window-related classes into separate package

This commit is contained in:
JeremyStar™ 2024-07-22 15:20:26 +02:00
parent 90b6dbcd31
commit e7e1abc510
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
3 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.graphics.types; package de.staropensource.sosengine.graphics.types.window;
/** /**
* Used for determining if and how a window's frame rate should be synchronized to the monitor's refresh rate. * Used for determining if and how a window's frame rate should be synchronized to the monitor's refresh rate.

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.graphics.types; package de.staropensource.sosengine.graphics.types.window;
/** /**
* Determines how a window should be displayed. * Determines how a window should be displayed.

View file

@ -15,11 +15,11 @@ module sosengine.graphics {
exports de.staropensource.sosengine.graphics; exports de.staropensource.sosengine.graphics;
exports de.staropensource.sosengine.graphics.classes; exports de.staropensource.sosengine.graphics.classes;
exports de.staropensource.sosengine.graphics.events; exports de.staropensource.sosengine.graphics.events;
exports de.staropensource.sosengine.graphics.types; exports de.staropensource.sosengine.graphics.types.window;
// Reflection access // Reflection access
opens de.staropensource.sosengine.graphics; opens de.staropensource.sosengine.graphics;
opens de.staropensource.sosengine.graphics.classes; opens de.staropensource.sosengine.graphics.classes;
opens de.staropensource.sosengine.graphics.events; opens de.staropensource.sosengine.graphics.events;
opens de.staropensource.sosengine.graphics.types; opens de.staropensource.sosengine.graphics.types.window;
} }