Created
February 6, 2023 10:40
-
-
Save daniele-quero/01e1cc691cdd594bb2a53ec8b69cc872 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class Mapper : MonoBehaviour | |
{ | |
public bool isPlayer; | |
public Color color; | |
private void Start() | |
{ | |
Map.Instance.PaintNewElement(this); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment