1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Created Brushes (markdown)

Robert Beekman 2016-11-01 17:56:37 +01:00
parent 08dcef3728
commit 362445c31c

15
Brushes.md Normal file

@ -0,0 +1,15 @@
The Brushes variable lets you create colors and apply them to brushes
## Properties
## Functions
### GetColor
Turns the provided hex notation into a color
#### Syntax:
```lua
color GetColor(string hexCode);
```
#### Example:
```lua
local color = Brushes.GetColor("#ffffff");
```