rj-action-library/Runtime/Rendering/RenderingManager.cs

18 lines
272 B
C#
Raw Permalink Normal View History

2025-08-31 06:05:39 +00:00
using System.Diagnostics;
2024-12-01 17:07:41 +00:00
using System.Collections;
using System.Collections.Generic;
2025-08-31 06:05:39 +00:00
using System;
using Godot;
2024-12-01 17:07:41 +00:00
namespace Rokojori
{
[Tool]
[GlobalClass]
2025-08-31 06:05:39 +00:00
public partial class RenderingManager:Node
{
2024-12-01 17:07:41 +00:00
[Export]
2025-08-31 06:05:39 +00:00
public RenderingManagerData data;
2024-12-01 17:07:41 +00:00
}
}