Files
itgmania212121/stepmania/src/TitleSubstitution.h
T
2003-03-27 20:15:33 +00:00

28 lines
523 B
C++

#ifndef TITLE_SUBSTITUTION_H
#define TITLE_SUBSTITUTION_H 1
struct TitleTrans;
class TitleSubst
{
vector<TitleTrans *> ttab;
void AddTrans(const TitleTrans &tr);
public:
TitleSubst(const CString &section);
~TitleSubst();
void Load(const CString &filename, const CString &section);
void Subst(CString &title, CString &sub, CString &artist,
CString &ttitle, CString &tsub, CString &tartist);
};
#endif
/*
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/