mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
- Added Submodule 'Xml-Beef' - Use .slnx as solution-file - Automatically set correct path to ScriptCore in Project files
25 lines
461 B
C#
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)
|
|
{
|
|
}
|
|
}
|