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

This commit is contained in:
Able 2021-11-25 18:58:51 -06:00
parent 727ebaeb4f
commit 815433e490
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() {}