- 🌱 I'm a engine and graphics programmer working on my own projects on my spare time.
- 💬 Ask me about anything you want!
- ℹ️ Checkout my portfolio here!
public interface IReader<T>
{
T Read(byte[] buff, int offset, ref int size);
}
public class Reader<T> : IReader<T>
public abstract class State
{
public readonly string Name;
protected readonly StateMachine StateMachine;
protected readonly GameObject GameObject;