This website requires JavaScript.
Explore
Help
Sign In
NaiJi
/
project-kyoku
Watch
1
Star
0
Fork
You've already forked project-kyoku
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ebf736a0bb
project-kyoku
/
include
/
sprite.h
9 lines
103 B
C
Raw
Normal View
History
Unescape
Escape
Implement basic ClassicNote
2021-06-07 14:19:58 -04:00
#
pragma once
class
Sprite
{
Finish brief version of new project design
2021-06-09 14:08:58 -04:00
public
:
virtual
~
Sprite
(
)
=
default
;
Iterative refactoring of what's done to this moment
2021-06-16 11:16:18 -04:00
virtual
void
reset
(
)
=
0
;
Implement basic ClassicNote
2021-06-07 14:19:58 -04:00
}
;