- 🌱 Graduated in Videogame Design and Development at CITM(UPC).
- 🕹️ Interested in getting a new opportunities in the Game Industry,
- 💬 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;