12 lines
213 B
C#
12 lines
213 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using DragonLi.Core;
|
|
using UnityEngine;
|
|
|
|
public class ZombieDog : Zombie
|
|
{
|
|
public GameObject effect;
|
|
public AnimationClip selfDie;
|
|
}
|