Untitled

 avatar
unknown
plain_text
3 years ago
239 B
3
Indexable
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class NormalBrick : BrickBase
{
    
    public override void Dead()
    {
        gameManager.BrickHasDied();
        Destroy(this.gameObject);
    }
}
Editor is loading...