Skip to content

#pragma once

Preprocessor

Include guard. Safe at the top of every .clh. The compiler strips the line before parse, so it does not error.

#pragma once

(none)

A header included more than once is skipped. Write this on every header.

#pragma once
struct PlayerData {
int Coins = 0;
};

include · pragma-strict