2024-03-23 15:21:10 +00:00
|
|
|
/*
|
|
|
|
Copyright 2024, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
|
|
|
|
|
|
|
This file is part of On the Grid.
|
|
|
|
|
|
|
|
On the Grid is free software: you can redistribute it and/or modify it under the terms of
|
|
|
|
the GNU General Public License as published by the Free Software Foundation, either version 3 of
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
On the Grid is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with On the Grid. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mod game_review;
|
|
|
|
pub use game_review::GameReview;
|
|
|
|
|
2024-03-22 02:39:28 +00:00
|
|
|
mod home;
|
|
|
|
pub use home::HomeView;
|
|
|
|
|
2024-03-15 14:49:25 +00:00
|
|
|
mod settings;
|
|
|
|
pub use settings::SettingsView;
|