Skip to content

hanaaple/AppleEngine

Repository files navigation

Requirements

  • CMake 4.1.2 or higher

코드 컨벤션

  • PascalCase
    • 파일명 Foo.h, Foo.cpp
    • 함수명 void Foo()
    • 구조체 / 클래스명 class Foo
    • 정적 변수 static int FooVariable
  • ALL_CAPS
    • 상수 const int MAX_COUNT = 4
  • camelCase
    • 지역 변수, 매개변수 int enemyCount
  • 들여쓰기
    • 스페이스 4칸 (탭 X)
  • 중괄호
    • 생략 금지
    • BSD 스타일
// X
if (condition) return true;
if (condition)
    return true;
if (condition) {
    return true;
}

// O
if (condition)
{
    return true;
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages