mirror of
https://github.com/DerTyp7/example-top-down-unity.git
synced 2025-10-29 12:32:09 +01:00
12 lines
210 B
C#
12 lines
210 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
// Handles the player input, such as interactions
|
|
public class PlayerController : MonoBehaviour
|
|
{
|
|
void Update()
|
|
{
|
|
}
|
|
}
|