Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
HugoDzz
/
rust-sandbox
like
11
Running
App
Files
Files
Community
main
rust-sandbox
/
rust
/
src
/
utils
/
tick.rs
HugoDzz
feat: π
d5c39db
almost 3 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
224 Bytes
use
bevy::prelude::*;
/*
π¦ Resources and Components. Learn more: https://bevy-cheatbook.github.io/programming/res.html
*/
#[derive(Resource)]
pub
struct
TickCounter
{
pub
count:
u32
,
pub
tick_rate:
u32
,
}