Skip to content
Permalink
12d06b305d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (20 sloc) 369 Bytes
#ifndef EFFECT_HPP
#define EFFECT_HPP
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
#include <tuple>
#include "libsqlite.hpp"
using namespace std;
class Effect
{
private:
string Effect_Name, Target_Stat;
int Duration;
float Impact;
public:
Effect(int _id);
friend ostream& operator<<( ostream&, const Effect&);
};
#endif