Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class pencil {
- string type = "graphite";
- string color = "grey";
- static bool drawing = false;
- public static void draw() {
- drawing = true;
- }
- public static void stopdraw() {
- drawing = false;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement