This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Install-File { | |
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory=$true, Position=0)][string]$Path, | |
[Parameter(ParameterSetName='SourcePath')][string]$SourcePath, | |
[Parameter(ParameterSetName='Content')][string]$Content, | |
[Parameter(ParameterSetName='DownloadUrl')][string]$DownloadUrl | |
) | |
# ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release | |
use eframe::egui; | |
use egui::{color, pos2, Color32, Id, Rect, Rounding}; | |
fn main() { | |
let options = eframe::NativeOptions::default(); | |
eframe::run_native( | |
"My egui App", | |
options, |
OlderNewer