tw-0.6+udp://49.13.166.125:8303
(edited)m_BroadcastTick
will be set to 500
(which is the current tick (0) + 10 seconds). But then the client will receive its first snapshot which will set the correct tick (causing the broadcast to disappear).use macroquad::prelude::*;
#[macroquad::main("BasicShapes")]
async fn main() {
loop {
clear_background(RED);
draw_line(40.0, 40.0, 100.0, 200.0, 15.0, BLUE);
draw_rectangle(screen_width() / 2.0 - 60.0, 100.0, 120.0, 60.0, GREEN);
draw_circle(screen_width() - 30.0, screen_height() - 30.0, 15.0, YELLOW);
draw_text("IT WORKS!", 20.0, 20.0, 30.0, DARKGRAY);
next_frame().await
}
}
export PATH="$PATH:$HOME/.cargo/bin/cargo
works in bash and WSL~/.whatever
~/.whatever
ewan@machine ~> pacman -S mingw-w64-ucrt-x86_64-rust
const char aaFields[][16] = {"m_X", "m_Y", "m_ClientID", "m_Angle", "m_HealthAmount", "m_ArmorAmount", "m_Self"};
[package]
name = "gameoflife"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
microquad = "*"
embed-manifest
crate provides a straightforward way to embed a Windows manifest in an executable, whatever the build environment and even when cross-compiling, without dependencies on external tools from LLVM or MinGW.gitignore
?
if its deleted, couldnt you just restore it? check git status
are you pulling from the right url? git remote -v
(edited)git restore /path/to/file/<file>
or
git restore <commit/branch> -- <file/directory>
or git reset --hard
<- careful with this one, read about it if you dont know what it does (edited)