-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Tornado Tech edited this page Jul 29, 2024
·
6 revisions
Hypercube is a game engine/framework inspired by RboustToolbox, for creating cross-platform desktop games, with a predominant approach in ECS.
In order to run Hypercube in framworke mode, you will need to call the Enter
method of EntryPoint
from Hypercube.Client
, this will create a simple window.
An example of the above in code form:
using Hypercube.Client;
namespace Program;
public static class EntryPoint
{
public static void Main(string[] args)
{
EntryPoint.Enter(args);
}
}