Skip to content

willwolfram18/Lighthouse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lighthouse

Description

Established Coding Conventions

  • Public properties/variables in C# classes are written using camelCase public string firstName {get; set;}
  • Private variables in C# classes will also start with an underscore private int _currScore;
  • Function calls in C# use PascalCase public void MoveLeft()
  • Opening curly braces are placed on their own lines
if (condition)
{
	// code
}
  • Use 4 spaces per indentation

About

A Unity game, thought of by Alex Levine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages