Skip to content

Fmurph97/Mogue-Engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mogue Engine

This is the Mogue game engine. This engine is just for me learning how to use c++ and make a game engine. I've been a game developerasd for a while now and now I want to know how the game engines themselves are made and what math and rendering shenanegans these people are up to.

Building the Engine

In order to build the engine you must have SCons and the GLFW and GLEW include files and libs change the paths to the include and libs in the SConstruct file.

When building with SCons you can run scons vsproj=1 to make a visual studio project for mogue.

Style Guide

If you are going to commit then please follow this simple style guide:

PascalCaseFileName.cpp:

class PascalCaseClasses {
  int snake_case_variables = 0;
  
  void snake_case_functions() {
    printf("%i\n", snake_case_variable);
  }
}

also do this:

int some_func() {
  // some code
}

not this:

int some_func()
{
  // some code
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors