Skip to content

Instantly share code, notes, and snippets.

@saitocastel1900
Created November 7, 2022 03:44
Show Gist options
  • Save saitocastel1900/6ff2719675c310f8b1023cbd6176a1d8 to your computer and use it in GitHub Desktop.
Save saitocastel1900/6ff2719675c310f8b1023cbd6176a1d8 to your computer and use it in GitHub Desktop.
using UnityEngine;
public class FactoryTest : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
var augerCreator = new AugerCreator();
var auger=augerCreator.Create("鬼1",120);
auger.Attack(120);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment