Skip to content

Instantly share code, notes, and snippets.

@daniele-quero
Created February 6, 2023 10:40
Show Gist options
  • Save daniele-quero/01e1cc691cdd594bb2a53ec8b69cc872 to your computer and use it in GitHub Desktop.
Save daniele-quero/01e1cc691cdd594bb2a53ec8b69cc872 to your computer and use it in GitHub Desktop.
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