summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 02efc49..73888c2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,12 +1,12 @@
mod view;
-mod global;
+mod common;
mod calculus;
mod camera;
mod object;
mod interval;
use crate::calculus::calculus::Point3;
-use crate::global::*;
+use crate::common::*;
use crate::camera::Camera;
use crate::object::{HittableList, Sphere};
use crate::view::{render_viewer, View};