409544041 / Bit34-Director

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bit34 Director - MVP Library for Unity

Table of contents

What is it?

This is an MVP (Model-View-Presenter) architectural pattern library that has been written in C# to be used with Unity.

Who is it for?

If you want to organize your Unity projects with an architectural pattern and are looking for a library that is relatively simple and easy to learn, then this is for you.

What does Model View Presenter do anyway?

MVP is a pattern to develop user interfaces by separating by 3 responsibilities:

  • Model; how data is stored and accessed
  • View; how data is shown to and interacted by the user (no logic, just passes requests to the presenter)
  • Presenter; how data is collected to be shown in view and how the user interaction will be acted upon

Even though its purpose was developing user interfaces we will see how it fits into our game development projects.

TBA...

About

License:MIT License


Languages

Language:C# 100.0%