summaryrefslogtreecommitdiff
path: root/src/Frame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Frame.cpp')
-rw-r--r--src/Frame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Frame.cpp b/src/Frame.cpp
index 77c7063..a8403b7 100644
--- a/src/Frame.cpp
+++ b/src/Frame.cpp
@@ -49,12 +49,12 @@ void Frame::add(Character &c)
{
mvwaddch(w,c.getRow(),c.getCol(),c.getSymbol());
}
-*/
+
void Frame::erase(Character &c)
{
mvwaddch(w,c.getRow(),c.getCol(),' ');
}
-/*
+
void Frame::add(Character &c, int nRow, int nCol)
{
if((nRow >= 0 && nRow < height) && (nCol >= 0 && nCol < width))