mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-18 17:05:48 -04:00
16 lines
221 B
C++
16 lines
221 B
C++
/*
|
|
icons.h
|
|
Copyright (C) 2009 yellow wood goblin
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nds.h>
|
|
|
|
class cIcons {
|
|
public:
|
|
static void maskBlt(const u16* aSrc, u16* aDst);
|
|
};
|