Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

chen1plus/pacman-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Naming style

lower_case

Used by functions, variables, and members in structures.

camelBack

Used by static global variables.

CamelCase

Used by functions from raylib, custom type names.

UPPER_CASE

Used by constants, define of constants, members of enums, and global variables which should be immutable except for loading and unloading. The variables should be immutable during the main program logic.

// global variables which should be immutable except for loading and unloading
Image background;
// the variable should only be modified in these two functions
void background_img_load();
void background_img_unload();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published