mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 22:03:56 -07:00
17 lines
353 B
C++
17 lines
353 B
C++
|
|
/**
|
||
|
|
* =========================================================================
|
||
|
|
* File : codec.cpp
|
||
|
|
* Project : 0 A.D.
|
||
|
|
* Description :
|
||
|
|
* =========================================================================
|
||
|
|
*/
|
||
|
|
|
||
|
|
// license: GPL; see lib/license.txt
|
||
|
|
|
||
|
|
#include "precompiled.h"
|
||
|
|
#include "codec.h"
|
||
|
|
|
||
|
|
ICodec::~ICodec()
|
||
|
|
{
|
||
|
|
}
|