2014-11-13 22:26:49 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
class BoundingBox
|
|
|
|
{
|
|
|
|
public:
|
2019-02-15 01:59:50 +00:00
|
|
|
static void Init();
|
2016-06-24 08:43:46 +00:00
|
|
|
static void Shutdown();
|
2014-11-13 22:26:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static void Set(int index, int value);
|
|
|
|
static int Get(int index);
|
2014-11-13 22:26:49 +00:00
|
|
|
};
|
2019-02-15 01:59:50 +00:00
|
|
|
}; // namespace OGL
|