skeleton stuff

This commit is contained in:
2020-06-18 13:56:50 +01:00
parent 1ce479afaa
commit e895f932a6
2 changed files with 45 additions and 0 deletions

View File

@@ -156,6 +156,12 @@ fn is_string_numeric(str: String) -> bool {
return true;
}
/// e.g. pass all tile IDs into this to get a new non-conflicting tile ID
#[inline]
fn new_unique_id(ids: Vec<String>) -> String {
}
pub trait Quote {
fn quote(&self) -> String;
}