Skip to content

Instantly share code, notes, and snippets.

View Joshalexjacobs's full-sized avatar
🕹️

Josh Jacobs Joshalexjacobs

🕹️
View GitHub Profile
@Joshalexjacobs
Joshalexjacobs / JSONLevelEditor.cs
Last active August 16, 2023 20:08
JSON-based Level Editor for Unity
using System;
using UnityEngine;
namespace JSONLevelEditor {
[Serializable]
public class LevelResource {
public LevelEvent[] levelRoute;
}