forked from StarOpenSource/Engine
Move Window-related classes into separate package
This commit is contained in:
parent
90b6dbcd31
commit
e7e1abc510
3 changed files with 4 additions and 4 deletions
|
@ -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.
|
|
@ -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.
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue