mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
- Updated vswhere.exe - Scripts created via Asset browser are now being added to the project - Fixed Apply not being called for extended Settings - Correctly wrap New File preview only when line full - Create Project: Show warning, when target directory already exists
25 lines
423 B
C#
25 lines
423 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>
|
|
void OnCreate()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// OnUpdate is called once every frame.
|
|
/// </summary>
|
|
void OnUpdate(float deltaTime)
|
|
{
|
|
}
|
|
}
|