Add visibility-related functions to window

This commit is contained in:
Tomaka17 2014-11-01 09:02:01 +01:00
parent a479b2f60c
commit b6f7491157
6 changed files with 64 additions and 4 deletions

View file

@ -125,6 +125,12 @@ impl Window {
pub fn set_title(&self, _: &str) {
}
pub fn show(&self) {
}
pub fn hide(&self) {
}
pub fn get_position(&self) -> Option<(int, int)> {
None
}