Files
glitchy-engine-beef/GlitchyEditor/resources/Templates/ScriptTemplate.cs
T
Simon Lübeß ac0f4dade6 Updated Template for new dotnet runtime
- Added Submodule 'Xml-Beef'
- Use .slnx as solution-file
- Automatically set correct path to ScriptCore in Project files
2025-08-09 01:13:05 +02:00

25 lines
461 B
C#

using GlitchyEngine;
using GlitchyEngine.Math;
using System;
using static GlitchyEngine.Math.Math;
namespace [ProjectName];
public class [EntityName] : Entity
{
/// <summary>
/// OnCreate is called once before the first call to OnUpdate.
/// </summary>
protected override void OnCreate()
{
}
/// <summary>
/// OnUpdate is called once every frame.
/// </summary>
protected override void OnUpdate(float deltaTime)
{
}
}