= 함수명 / 클래스명 : Pascal

= 그 외 변수명 : Camel

public struct menu
{
    public string menu_name;
    public string menu_kr;
    public int menu_price;
    public string menu_image;
    
    public menu(string menu_name, string menu_kr, int menu_price, string menu_image)
    {
        this.menu_name = menu_name;
        this.menu_kr = menu_kr;
        this.menu_price = menu_price; 
        this.menu_image = menu_image;
    }
}
public class IngredientController : MonoBehaviour
{
    private Vector3 defaultPos;
    //생략
    public GameObject ChamomileTea;
    public GameObject RooibosTea;
    public GameObject GreenTea;

설명 : https://hyunjun.kr/21

사용하는 키워드 : Feat, Fix, Style, Del, Move, Rename, Merge, Refactor

예시 :

Feat : 플레이어 이동 기능 추가

Untitled