All pastes #2121796 Raw Edit

Stuff

public text v1 · immutable
#2121796 ·published 2012-02-26 18:49 UTC
rendered paste body
void TestTrafficLight::GameStart()
{
	for (int count = 0; count < MAX; ++count)
	{
		m_TrafficLightPtrArr[count] = new TrafficLight(10, 10, 40, 5);
	}
void TestTrafficLight::GamePaint(RECT rect)
{
	for (int count = 0; count < MAX; ++count)
	{
		m_TrafficLightPtrArr[count]->Paint();
	}
}