This commit is contained in:
parent
803f94e415
commit
ec9c8c2ab5
10 changed files with 79 additions and 43 deletions
|
@ -548,6 +548,20 @@ BOOL CCore::IsTileValid(int Set,int Tile)
|
|||
return(TileBank.IsTileValid(Set,Tile));
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CCore::CopySelection(CMapEditView *View)
|
||||
{
|
||||
Layer[ActiveLayer]->CopySelection(this);
|
||||
UpdateView(View);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CCore::PasteSelection(CMapEditView *View)
|
||||
{
|
||||
Layer[ActiveLayer]->PasteSelection(this);
|
||||
UpdateView(View);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/*** Misc ********************************************************************/
|
||||
/*****************************************************************************/
|
||||
|
@ -734,14 +748,3 @@ GString Path=FullPath.Dir();
|
|||
}
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
void CCore::CopySelection()
|
||||
{
|
||||
Layer[ActiveLayer]->CopySelection(this);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CCore::PasteSelection()
|
||||
{
|
||||
Layer[ActiveLayer]->PasteSelection(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue