ScottKane
ScottKane
The original code written was without `this.` however StyleCop was enforcing the use of them so I assumed this was required. Happy to make any changes required as soon as...
Ok I ran `dotnet format` as requested, I think ommitting `Search` from the Bing/Google connectors is a better descision, they both implement `IWebSearchEngineConnector` which can tell you're working with a...
@dluc no problem, sorry I will look out for that next time I raise a PR
So far the biggest problem I can see with implementing this is that some types that come from `glam` aren't `repr(C)` so would need some work to get this feature...
Could be an issue as glam is using simd vector types which right now dont work properly over FFI: https://github.com/rust-lang/rust/issues/53346
It would be nice if this API could support some of the other `SystemParam`'s, right now I'm working on bindings to bevy using the existing API. As it stands I...
In case it's useful to see some of the things I'm using this API to do, currently this will only support one `Query` per system because doing this for a...
> > there is currently no way to query for `Res`/`ResMut` even though they can be inserted on the world by component id. > > Maybe you want a buildable...
```c# internal static class Program { public static async Task Main() { using var process = Process.Start(new ProcessStartInfo { FileName = "steamcmd", Arguments = "+help +quit", UseShellExecute = false, RedirectStandardOutput...