mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
14 lines
No EOL
218 B
C++
14 lines
No EOL
218 B
C++
#include "LionBenchmark.h"
|
|
|
|
void SomeRocks(Painter& sw)
|
|
{
|
|
static Painting rocks;
|
|
|
|
ONCELOCK {
|
|
FileIn in(GetDataFile("SomeRocks.painting"));
|
|
rocks.Serialize(in);
|
|
}
|
|
|
|
sw.EvenOdd();
|
|
sw.Paint(rocks);
|
|
} |