Hipension
Recent Activity
21 hrs on record
last played on 14 Feb
6.4 hrs on record
last played on 12 Feb
0.1 hrs on record
last played on 11 Feb
Volkarith 12 Dec, 2022 @ 3:32am 
my big sister :) ONEE-SAN
76561199137330018 28 Nov, 2021 @ 1:06am 
nice wallpaper
Кошечкин 13 Sep, 2021 @ 3:55am 
Ты такой тупень, я ♥♥♥
edward cullen 19 Mar, 2019 @ 3:55am 
──────▄▌▐▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀​▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▌
───▄▄██▌█ +REP +REP +REP +REP +REP +REP +REP +REP +REP +REP
▄▄▄▌▐██▌█ +REP +REP +REP +REP +REP +REP +REP +REP +REP +REP
███████▌█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄​▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▌
▀(@)▀▀▀▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀▀▀▀▀​▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀​▀▀▀(@)▀
[Low*HP] BoGGuN 6 Feb, 2019 @ 10:37am 
+rep my best friend
Дойчен зольдатен 24 Nov, 2018 @ 6:25am 
#include "stdafx.h"
#include<SFML/Graphics.hpp>
using namespace sf;
int main()
{
RenderWindow okno(VideoMode(250, 250), "Window");
Texture t;
t.loadFromFile("man.png");
Sprite s;
s.setTexture(t);
s.setPosition(50, 50);
while (okno.isOpen()) {
Event event;
while (okno.pollEvent(event)) {
if (Keyboard::isKeyPressed(Keyboard::A)) {
s.move(-1, 0);
}
if (Keyboard::isKeyPressed(Keyboard::D)) {
s.move(1, 0);
}
if (Keyboard::isKeyPressed(Keyboard::W)) {
s.move(0, -1);
}
if (Keyboard::isKeyPressed(Keyboard::S)) {
s.move(0, 1);
}
if (event.type == Event::Closed)
okno.close();
}
okno.clear();
okno.draw(s);
okno.display();
}
return 0;
}