Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Use k&r brace placement style #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions NewBehaviourScript.cs
Original file line number Diff line number Diff line change
@@ -2,17 +2,14 @@
using System.Collections.Generic;
using UnityEngine;

public class NewBehaviourScript : MonoBehaviour
{
public class NewBehaviourScript : MonoBehaviour {
// Start is called before the first frame update
void Start()
{
void Start() {

}

// Update is called once per frame
void Update()
{
void Update() {

}
}