This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
PMC_Projekt/ProjektUnity/Assets/Enemy 2/BasicEnemy/BasicEnemyMover.cs

19 lines
299 B
C#
Raw Normal View History

2024-09-05 21:10:50 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BasicEnemyMover : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}