summaryrefslogtreecommitdiff
path: root/source/dw/app/new.rs
blob: 7c99f65a4c1aa95d670790693101a99a552b4323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright 2023 Gabriel Jensen.

use crate::dw::app::App;

impl App {
	pub fn new() -> App {
		return App {
		};
	}
}