mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
More work. Audio driver works enough to play music now.
This commit is contained in:
24
PortabilityLayer/QDPictHeader.h
Normal file
24
PortabilityLayer/QDPictHeader.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include "SharedTypes.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class IOStream;
|
||||
|
||||
class QDPictHeader
|
||||
{
|
||||
public:
|
||||
QDPictHeader();
|
||||
bool Load(IOStream *stream);
|
||||
|
||||
int GetVersion() const;
|
||||
const Rect &GetFrame() const;
|
||||
|
||||
private:
|
||||
Rect m_frame;
|
||||
|
||||
int m_pictVersion;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user