added an example and a bit of work on defining useful structures

master
Able 2021-11-25 18:58:51 -06:00
parent 727ebaeb4f
commit a9ef34e3f0
No known key found for this signature in database
GPG Key ID: 2BB8F62388A6A225
5 changed files with 30 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "meshup"
version = "0.1.0"

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "meshup"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1 @@
# Hello World

13
src/lib.rs Normal file
View File

@ -0,0 +1,13 @@
pub struct RGBA {
red: u8,
green: u8,
blue: u8,
alpha: u8,
}
pub struct Header {
label: String,
level: u8,
}
pub fn parse() {}