14 lines
174 B
C#
14 lines
174 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
public class PlayerCamera : MonoBehaviour{
|
|
void Start(){
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void LateUpdate(){
|
|
|
|
}
|
|
}
|