This file contains hidden or 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
{-# LANGUAGE NamedFieldPuns #-} | |
{-# LANGUAGE OverloadedLists #-} | |
{-# OPTIONS_GHC -Wall #-} | |
module Lib where | |
import Control.Category ((<<<)) | |
import Data.Function (fix) | |
import Data.Map (Map) | |
import qualified Data.Map.Lazy as Map |
This file contains hidden or 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
#pragma once | |
#include "SFML\Graphics.hpp" | |
#include "SFML\Window.hpp" | |
#include "SFML\System.hpp" | |
using namespace sf; | |
class Game | |
{ | |
private: |
This file contains hidden or 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
var staffDTOs = ctx.Set<Staff>().ToList().Select(s => new StaffDTO(s)); |
This file contains hidden or 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
<!DOCTYPE html> | |
<style> | |
/* Colors */ | |
body { | |
background: url(http://i.imgur.com/aZty7Mq.png); | |
animation: mymove 4s linear infinite; | |
-webkit-animation: mymove 4s linear infinite; | |
-moz-animation: mymove 4s linear infinite; | |
} |