Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1149)

Unified Diff: samples/third_party/pop-pop-win/lib/src/poppopwin/game_state.dart

Issue 200723008: samples/poppopwin: upgrade to first-class sample (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed pkgbuild.status for rename Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: samples/third_party/pop-pop-win/lib/src/poppopwin/game_state.dart
diff --git a/samples/third_party/pop-pop-win/lib/src/poppopwin/game_state.dart b/samples/third_party/pop-pop-win/lib/src/poppopwin/game_state.dart
deleted file mode 100644
index f17d09ac66b4ef6ade204955f04f32921f7ad337..0000000000000000000000000000000000000000
--- a/samples/third_party/pop-pop-win/lib/src/poppopwin/game_state.dart
+++ /dev/null
@@ -1,13 +0,0 @@
-part of ppw;
-
-class GameState {
- static const GameState reset = const GameState._internal("reset");
- static const GameState started = const GameState._internal("started");
- static const GameState won = const GameState._internal("won");
- static const GameState lost = const GameState._internal("lost");
- final String name;
-
- const GameState._internal(this.name);
-
- String toString() => 'GameState: $name';
-}

Powered by Google App Engine
This is Rietveld 408576698