iTunesIsEvil
yo im tied to make a game and there is problom
You're trying to set the
state
property, which you've defined as being of type Tile (public Tile state {get; private set;}
), to the parameter state
, but the parameter state
is of type tilestate
.
I'm not familiar with those types, but since they're not the same (and apparently there's not an implicit cast available between Tile
and tilestate
), you can't assign the state
parameter to the state
property.4 replies