[go: up one dir, main page]

File: XPKDecompressor.cpp

package info (click to toggle)
ancient 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,168 kB
  • sloc: cpp: 15,188; makefile: 217; sh: 31
file content (15 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright (C) Teemu Suutari */

#include "XPKDecompressor.hpp"
#include "XPKMain.hpp"

namespace ancient::internal
{

XPKDecompressor::XPKDecompressor(uint32_t recursionLevel) :
	_recursionLevel{recursionLevel}
{
	// nothing needed
}

}