Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 251 Bytes

C++.md

File metadata and controls

13 lines (10 loc) · 251 Bytes

2020-11-27_12:25:50

C++ snippets

A collection of C++ snippets. Move these to dedicated documents once we have enough text to write.

Looping over all actors of a particular type:

for (AMyActor* MyActor : TActorRange<AMyActor>(World)
{
}