Ed_
b137bc542c
Moved core ui to its own folder. Worked on theming (proper light and dark theme) Began to work on the scroll box widget and input box constructions I added back a script for flattening the codebase: gen_flattened_codebase.ps1
7 lines
135 B
PowerShell
7 lines
135 B
PowerShell
function verify-path { param( $path )
|
|
if (test-path $path) {return $true}
|
|
|
|
new-item -ItemType Directory -Path $path
|
|
return $false
|
|
}
|