This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if latest_post_list %} | |
{% for post in latest_post_list %} | |
<li><a href="{% url 'blog:view_post' post.id %}">{{post.title_text}}</a> {{post.pub_date}}</li> | |
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boot.ts(12,17): error TS2339: Property 'disableVisabilityChange' does not exist on type 'Stage'. | |
boot.ts(15,20): error TS2339: Property 'pageAlignHorizontally' does not exist on type 'Point'. | |
boot.ts(20,14): error TS2339: Property 'scaleMode' does not exist on type 'Stage'. | |
boot.ts(20,33): error TS2339: Property 'StageScaleMode' does not exist on type 'typeof Phaser'. | |
boot.ts(21,14): error TS2339: Property 'forceLandscape' does not exist on type 'Stage'. | |
boot.ts(22,20): error TS2339: Property 'pageAlignHorizontally' does not exist on type 'Point'. | |
boot.ts(23,20): error TS2339: Property 'setScreenSize' does not exist on type 'Point'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LeaveGifts : ChildSituation<GiftGiverSituation> | |
{ //** situation that finds santa object, routes to it and leaves presents. | |
public LeaveGifts(GiftGiverSituation parent) : base(parent) | |
{ | |
} | |
public override void Init(GiftGiverSituation parent) | |
{ | |
this.findGiftGiverObject(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LeaveGifts : ChildSituation<GiftGiverSituation> | |
{ //** situation that finds santa object, routes to it and leaves presents. | |
public LeaveGifts(GiftGiverSituation parent) : base(parent) | |
{ | |
} | |
public override void Init(GiftGiverSituation parent) | |
{ | |
this.findGiftGiverObject(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<menu xmlns:android="http://schemas.android.com/apk/res/android" > | |
<item android:id="@+id/action_search" | |
android:icon="@drawable/ic_action_search" | |
android:title="@string/action_search" | |
android:showAsAction="always" /> | |
<item android:id="@+id/action_new" | |
android:title="@string/action_new" | |
android:showAsAction="always" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void dropChecker(int column, int player) { | |
int y = 0; | |
while(y < grid[0].length-1 && grid[column][y] == 0) { | |
y++; | |
System.out.println(column + ", " + y); | |
} | |
grid[column][y] = player; | |
System.out.println("FINAL: " + grid[column][y]); |