1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vlib: make more structs, consts, & enums public

This commit is contained in:
joe-conigliaro
2019-10-24 22:35:11 +11:00
committed by GitHub
parent 75a6c759c7
commit fe17dd9a7e
6 changed files with 10 additions and 10 deletions

View File

@ -41,12 +41,12 @@ pub const (
LightRed = Color { r: 255, g: 204, b: 203 }
)
const (
pub const (
ALIGN_LEFT = 1
ALIGN_RIGHT = 4
)
struct TextCfg {
pub struct TextCfg {
pub:
color Color
size int