Skip to content
View ZaroDev's full-sized avatar
🐒
Studing
🐒
Studing

Highlights

  • Pro

Organizations

@CapybaraStudios @PixelPlaygroundStudio

Block or report ZaroDev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ZaroDev/README.md

Hi there, I'm Víctor! 👋

  • 🌱 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!

Contact me 📫

victorzaro | Twitter victorzaro | Discord



Tools I use 🔧

C

C#

C++

Flutter

Dart

C++

Unity

VS

Maya

PS

AI

PP

Unreal

 

 

GitHub stats

Pinned Loading

  1. Raito Raito Public

    C++ 20 modern rendering engine

    C++ 1

  2. WiwaEngine WiwaEngine Public

    Modern, open-source, c++ and OpenGL engine

    C++ 8 2

  3. Ray-tracing Ray-tracing Public

    A ray tracer project

    C++

  4. WhoToastedMrToaster WhoToastedMrToaster Public

    VR experience

    C# 1

  5. C# Blob stream reader and writer cla... C# Blob stream reader and writer classes
    1
        public interface IReader<T>
    2
        {
    3
            T Read(byte[] buff, int offset, ref int size);
    4
        }
    5
        public class Reader<T> : IReader<T>
  6. Unity C# finite state machine Unity C# finite state machine
    1
    public abstract class State
    2
    {
    3
        public readonly string Name;
    4
        protected readonly StateMachine StateMachine;
    5
        protected readonly GameObject GameObject;