My Project
 
Loading...
Searching...
No Matches
checkedcell.h
Go to the documentation of this file.
1#pragma once
2
3#include "image.h"
4
5class CheckedCell :public Image{
6private:
7 float alpha;
8
9public:
10 CheckedCell(int pos);
11
12 virtual void update();
13};
virtual void update()
Definition checkedcell.cpp:21
CheckedCell(int pos)
Definition checkedcell.cpp:7