csci5607/assignment-1/src/input_file.rs

10 lines
153 B
Rust
Raw Normal View History

2023-01-31 07:15:22 +00:00
use std::path::Path;
use anyhow::Result;
use crate::scene_data::Scene;
pub fn parse_input_file(path: impl AsRef<Path>) -> Result<Scene> {
todo!()
}