Files
2022-08-23 22:31:07 +02:00

32 lines
583 B
C++

/*
# _____ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2022, tyra - https://github.com/h4570/tyra
# Licensed under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#pragma once
#include <tyra>
namespace Tyra {
class Tutorial06 : public Game {
public:
Tutorial06(Engine* engine);
~Tutorial06();
void init();
void loop();
private:
Engine* engine;
audsrv_adpcm_t* sample;
};
} // namespace Tyra