2014-09-14 10:52:51 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2014-09-14 10:52:51 -06:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
#include "VideoCommon/BoundingBox.h"
|
2015-09-24 01:19:43 -06:00
|
|
|
#include "Common/ChunkFile.h"
|
|
|
|
#include "Common/CommonTypes.h"
|
2014-09-14 10:52:51 -06:00
|
|
|
|
|
|
|
namespace BoundingBox
|
|
|
|
{
|
|
|
|
// External vars
|
|
|
|
bool active = false;
|
2016-06-24 02:43:46 -06:00
|
|
|
u16 coords[4] = {0x80, 0xA0, 0x80, 0xA0};
|
2014-09-14 10:52:51 -06:00
|
|
|
|
|
|
|
// Save state
|
2016-01-17 14:54:31 -07:00
|
|
|
void DoState(PointerWrap& p)
|
2014-09-14 10:52:51 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
p.Do(active);
|
|
|
|
p.Do(coords);
|
2014-09-14 10:52:51 -06:00
|
|
|
}
|
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
} // namespace BoundingBox
|