mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Updated Template for new dotnet runtime
- Added Submodule 'Xml-Beef' - Use .slnx as solution-file - Automatically set correct path to ScriptCore in Project files
This commit is contained in:
@@ -11,14 +11,14 @@ public class [EntityName] : Entity
|
||||
/// <summary>
|
||||
/// OnCreate is called once before the first call to OnUpdate.
|
||||
/// </summary>
|
||||
void OnCreate()
|
||||
protected override void OnCreate()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// OnUpdate is called once every frame.
|
||||
/// </summary>
|
||||
void OnUpdate(float deltaTime)
|
||||
protected override void OnUpdate(float deltaTime)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user