summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BoundingBox.h
blob: e10b97cc06ca4899116c2c0f98b01ee505561809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include "Common/CommonTypes.h"

class PointerWrap;

// Bounding Box manager
namespace BoundingBox
{
// Determines if bounding box is active
extern bool active;

// Bounding box current coordinates
extern u16 coords[4];

enum
{
  LEFT = 0,
  RIGHT = 1,
  TOP = 2,
  BOTTOM = 3
};

// Save state
void DoState(PointerWrap& p);

};  // end of namespace BoundingBox