mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 20:05:48 +00:00
13 lines
224 B
C#
13 lines
224 B
C#
using System;
|
|
using OpenTK;
|
|
|
|
namespace PckStudio.Rendering.Camera
|
|
{
|
|
public abstract class Camera
|
|
{
|
|
protected Matrix4 projectionMatrix;
|
|
|
|
public abstract Matrix4 GetViewProjection();
|
|
}
|
|
}
|