ethanmoffat / EndlessClient

An open source client for Endless Online written in C#
MIT License
34 stars 16 forks source link

Remove usages of exotic primitives where applicable #294

Closed ethanmoffat closed 1 year ago

ethanmoffat commented 1 year ago

Use int primitive in place of short and byte wherever possible. Fixes out-of-range issues for values greater than short.MaxValue.

Closes #149